:root {
    --p-green: #079460;
    --s-dark: #1a1a1a;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, .12);
    --transition: all .5s cubic-bezier(.165, .84, .44, 1)
}

.hero-master-wrap {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0
}

.hero-master-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 100%);
    z-index: 1
}

.hero-pos-rel {
    position: relative;
    z-index: 2
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    background: rgba(7, 148, 96, .15);
    border: 1px solid rgba(7, 148, 96, .3);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px)
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--p-green);
    border-radius: 50%;
    margin-right: 12px;
    animation: p-glow 2s infinite
}

.badge-text {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin: 25px 0;
    letter-spacing: -1.5px
}

.text-green-glow {
    color: var(--p-green);
    text-shadow: 0 0 20px rgba(7, 148, 96, .3)
}

.feature-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 45px
}

.feature-glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 25px 15px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    will-change: transform
}

.feature-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(7, 148, 96, .2);
    border-color: var(--p-green)
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--p-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(7, 148, 96, .3)
}

.feature-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3
}

.premium-form-card {
    padding: 40px;
    border-radius: 35px
}

@keyframes p-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(7, 148, 96, .7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(7, 148, 96, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(7, 148, 96, 0)
    }
}

@media (max-width:991px) {
    .hero-master-wrap {
        padding: 40px 0
    }

    .hero-content-inner {
        margin-top: 18vh;
        text-align: center
    }

    .hero-main-title {
        font-size: 2.5rem
    }

    .feature-grid-modern {
        grid-template-columns: 1fr 1fr
    }

    .feature-glass-card:last-child {
        grid-column: span 2
    }

    .premium-form-card {
        padding: 25px;
        margin-top: 40px
    }
}

@media (max-width:480px) {
    .hero-content-inner {
        margin-top: 20vh
    }

    .hero-main-title {
        font-size: 2.1rem
    }

    .feature-grid-modern {
        grid-template-columns: 1fr
    }

    .feature-glass-card:last-child {
        grid-column: span 1
    }
}

:root {
    --p-green: #079460;
    --s-dark: #111;
    --text-muted: #4f4f4f;
    --transition: all .5s cubic-bezier(.25, 1, .5, 1)
}

.about-premium-section {
    padding: clamp(50px, 8vh, 100px) 0;
    background: #fff;
    overflow: hidden;
    width: 100%
}

.about-container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto
}

.about-flex-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center
}

@media(min-width:992px) {
    .about-flex-layout {
        flex-direction: row;
        gap: 80px
    }
}

.about-media-block {
    width: 100%;
    flex: 1;
    position: relative
}

.image-box {
    position: relative;
    padding: 20px
}

.image-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 90%;
    background: #f0f7f4;
    border-radius: 30px;
    z-index: 1
}

.main-about-img {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .15);
    transition: var(--transition)
}

.main-about-img:hover {
    transform: translateY(-5px)
}

.floating-stats-card {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 3;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    animation: float-y 3s infinite ease-in-out;
    border: 1px solid #f0f0f0
}

@media(max-width:576px) {
    .floating-stats-card {
        padding: 10px 15px;
        right: 0;
        bottom: 0
    }
}

.stats-icon {
    width: 45px;
    height: 45px;
    background: var(--p-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px
}

.stats-num {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--s-dark);
    line-height: 1
}

.stats-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.about-content-block {
    width: 100%;
    flex: 1
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.badge-line {
    width: 35px;
    height: 3px;
    background: var(--p-green);
    border-radius: 2px
}

.badge-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--p-green);
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.about-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--s-dark);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px
}

.text-green {
    color: var(--p-green)
}

.about-description {
    margin-bottom: 35px
}

.main-about-img {
    border: 1px solid #079460 !important
}

.para-main {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px
}

.para-highlight {
    background: #f9f9f9;
    border-left: 5px solid var(--p-green);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0
}

.para-highlight p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: var(--s-dark);
    margin: 0
}

.para-footer {
    font-size: 18px;
    font-weight: 700;
    color: var(--s-dark)
}

.btn-modern-green {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--p-green);
    color: #fff;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(7, 148, 96, .3)
}

.btn-modern-green:hover {
    background: var(--s-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2)
}

@keyframes float-y {

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

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

@media(max-width:991px) {
    .about-content-block {
        text-align: center
    }

    .section-badge {
        justify-content: center
    }

    .para-highlight {
        text-align: left
    }
}

:root {
    --p-green: #079460;
    --s-dark: #121212;
    --bg-soft: #f8faf9;
    --white: #ffffff;
    --t-ease: cubic-bezier(.165, .84, .44, 1)
}

.mosaic-img {
    border: 1px solid var(--p-green) !important
}

.authority-section {
    padding: clamp(60px, 10vh, 110px) 0;
    background: var(--white);
    overflow: hidden
}

.authority-container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto
}

.authority-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center
}

@media(min-width:992px) {
    .authority-row {
        flex-direction: row;
        gap: 80px
    }
}

.authority-content-col,
.authority-media-col {
    width: 100%;
    flex: 1
}

.badge-mini {
    display: inline-flex;
    align-items: center;
    background: rgba(7, 148, 96, .08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--p-green);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-green 2s infinite
}

.badge-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--p-green);
    letter-spacing: 1px
}

.authority-title {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 900;
    color: var(--s-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1.5px
}

.text-green-accent {
    color: var(--p-green)
}

.authority-lead {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px
}

.authority-cards-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

@media(min-width:640px) {
    .authority-cards-stack {
        grid-template-columns: 1fr 1fr
    }
}

.card-body {
    text-align: center
}

.trust-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 20px;
    transition: var(--t-ease);
    cursor: default;
    flex-direction: column;
    align-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    transition-duration: 1s
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: var(--p-green);
    box-shadow: 0 15px 30px rgba(7, 148, 96, .1)
}

.card-icon-box {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--bg-soft);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p-green);
    font-size: 24px
}

.card-h {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--s-dark)
}

.card-p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0
}

.mosaic-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.mosaic-main {
    position: relative;
    z-index: 2
}

.main-img {
    width: 100%;
    border-radius: 30px;
    aspect-ratio: 4/3;
    object-fit: cover
}

.floating-counter {
    position: absolute;
    top: -20px;
    right: 0;
    background: var(--p-green);
    color: var(--white);
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(7, 148, 96, .3);
    z-index: 3;
    animation: float-y 4s infinite ease-in-out
}

.counter-num {
    font-size: 32px;
    font-weight: 900
}

.counter-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0
}

.mosaic-sub {
    position: relative;
    margin-left: auto;
    width: 70%;
    margin-top: -100px;
    z-index: 1
}

.sub-img {
    width: 100%;
    border-radius: 30px;
    aspect-ratio: 3/2;
    object-fit: cover;
    border: 10px solid var(--white)
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(7, 148, 96, .4)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(7, 148, 96, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(7, 148, 96, 0)
    }
}

@keyframes float-y {

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

    50% {
        transform: translateY(-15px)
    }
}

@media(max-width:991px) {
    .mosaic-sub {
        margin-top: -50px
    }

    .floating-counter {
        padding: 15px 20px
    }

    .counter-num {
        font-size: 24px
    }
}

@media(max-width:480px) {
    .authority-container {
        width: 95%
    }

    .trust-card {
        flex-direction: column;
        text-align: center;
        align-items: center
    }
}