:root {
    --primary: #2E6B5B;
    --primary-dark: #17352E;
    --accent: #D9A441;
    --ink: #17231f;
    --muted: #6d7773;
    --paper: #f8f7f3;
    --soft: #eef2ee;
    --line: #dfe5e1;
    --white: #fff;
    --radius: 28px;
    --shadow: 0 18px 60px rgba(23, 53, 46, .09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: Vazirmatn, system-ui, sans-serif;
    color: var(--ink);  
    background: var(--paper);
    line-height: 1.9;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: .6s
}

.page-loader.done {
    opacity: 0;
    visibility: hidden
}

.loader-mark,
.brand-mark {
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 800
}

.loader-mark {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 30px;
    animation: pulse 1.3s infinite
}

.announcement {
    background: var(--primary-dark);
    color: #eaf1ed;
    font-size: .8rem;
    padding: .45rem 0
}

.announcement a {
    color: #fff;
    text-decoration: none
}

.site-nav {
    height: 86px;
    background: rgba(248, 247, 243, .88);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(23, 53, 46, .06)
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none
}

.navbar-brand strong,
.footer-brand strong {
    display: block;
    font-size: 1.05rem
}

.navbar-brand small,
.footer-brand small {
    display: block;
    color: var(--muted);
    font-size: .62rem
}

.brand-mark {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff
}

.nav-link {
    color: #42504b !important;
    font-size: .9rem;
    padding: .7rem .8rem !important
}

.nav-link:hover {
    color: var(--primary) !important
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary)
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px)
}

.btn {
    transition: .25s
}

.hero {
    min-height: calc(100vh - 130px);
    display: grid;
    align-items: center;
    position: relative;
    padding: 90px 0 120px;
    background: radial-gradient(circle at 85% 20%, rgba(217, 164, 65, .18), transparent 28%), radial-gradient(circle at 5% 80%, rgba(46, 107, 91, .12), transparent 28%)
}

.hero-title {
    font-size: clamp(3rem, 6.2vw, 6.2rem);
    line-height: 1.16;
    letter-spacing: -.045em;
    font-weight: 800;
    max-width: 950px
}

.hero-title em {
    font-style: normal;
    color: var(--primary)
}

.hero-text {
    max-width: 670px;
    font-size: 1.12rem;
    color: var(--muted);
    margin: 28px 0
}

.hero-note {
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--muted);
    font-size: .85rem;
    margin-top: 25px
}

.hero-note i {
    color: var(--primary)
}

.hero-visual {
    position: relative
}

.hero-photo {
    aspect-ratio: 4/5;
    border-radius: 36px;
    overflow: hidden;
    background: #dfe8e3;
    box-shadow: var(--shadow);
    transform: rotate(2deg)
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.placeholder-scene {
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    color: var(--primary);
    background: linear-gradient(145deg, #dce8e1, #f3eee1);
    font-size: 3rem
}

.placeholder-scene span {
    font-size: 1rem;
    font-weight: 700
}

.placeholder-scene small {
    font-size: .7rem;
    color: var(--muted)
}

.floating-card {
    position: absolute;
    bottom: 28px;
    right: -35px;
    background: #fff;
    padding: 20px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: 270px
}

.floating-card span {
    font-size: .7rem;
    color: var(--primary);
    display: block
}

.floating-card strong {
    font-size: .9rem;
    line-height: 1.7
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .6
}

.orb-1 {
    width: 150px;
    height: 150px;
    background: #e4c98d;
    left: -50px;
    top: 18%
}

.orb-2 {
    width: 80px;
    height: 80px;
    background: #a8c5b9;
    right: 4%;
    bottom: 10%
}

.section-space {
    padding: 120px 0
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 35px;
    margin-bottom: 45px
}

.section-header h2 {
    font-size: clamp(2rem, 3.4vw, 3.5rem);
    line-height: 1.25;
    letter-spacing: -.035em;
    margin: 8px 0 0;
    font-weight: 800
}

.section-header p {
    max-width: 470px;
    color: var(--muted);
    margin: 0
}

.section-header.light h2,
.section-header.light p {
    color: #fff
}

.eyebrow {
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em
}

.dark-section {
    background: var(--primary-dark);
    color: #fff
}

.display-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.15;
    letter-spacing: -.045em;
    font-weight: 800
}

.lead-copy {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 820px;
    margin: 25px auto
}

.principle {
    padding: 25px 0;
    border-top: 1px solid var(--line)
}

.principle span {
    font-size: .7rem;
    color: var(--primary)
}

.principle h4 {
    font-size: 1.15rem;
    margin: 18px 0 7px
}

.principle p,
.program-card p,
.facility-card p,
.value-card p,
.achievement-card p,
.person-card p {
    color: var(--muted);
    font-size: .88rem;
    margin: 0
}

.level-card {
    display: block;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: #fff;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
    transition: .35s;
    overflow: hidden
}

.level-card:after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(217, 164, 65, .08);
    left: -70px;
    bottom: -70px
}

.level-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, .09);
    color: #fff
}

.level-card>span {
    font-size: .7rem;
    color: #9db7ac
}

.level-card h3 {
    font-size: 2rem;
    margin: 22px 0 0
}

.level-card h5 {
    font-size: .9rem;
    color: #c3d1ca;
    margin: 8px 0 15px
}

.level-card p {
    color: #aebeb7;
    font-size: .88rem
}

.icon-circle {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    font-size: 1.3rem
}

.card-arrow {
    position: absolute;
    left: 30px;
    bottom: 30px
}

.level-light {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: none
}

.level-light:hover {
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow)
}

.level-light h5 {
    color: var(--primary)
}

.level-light p {
    color: var(--muted)
}

.program-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    transition: .3s
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #c5d4cd
}

.program-card>i {
    font-size: 1.8rem;
    color: var(--primary)
}

.program-card h3 {
    font-size: 1.1rem;
    margin: 24px 0 10px
}

.program-card.horizontal {
    display: flex;
    gap: 24px;
    align-items: flex-start
}

.program-card.horizontal h3 {
    margin: 0 0 8px
}

.story-panel {
    background: var(--primary);
    color: #fff;
    border-radius: 36px;
    padding: 65px;
    overflow: hidden;
    position: relative
}

.story-panel:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    left: -180px;
    bottom: -220px
}

.story-panel h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.25;
    letter-spacing: -.04em
}

.story-panel p {
    color: #d5e2dc;
    max-width: 530px
}

.timeline {
    border-right: 1px solid rgba(255, 255, 255, .25);
    padding-right: 30px
}

.timeline div {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.timeline b {
    font-size: .75rem;
    color: #e6c982;
    min-width: 55px
}

.timeline span {
    font-size: .9rem
}

.achievement-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px
}

.achievement-card span {
    font-size: .7rem;
    color: var(--primary)
}

.achievement-card h3,
.achievement-card h2 {
    font-size: 1.35rem;
    line-height: 1.5;
    margin: 18px 0 12px
}

.achievement-card.large {
    padding: 45px;
    min-height: 230px
}

.achievement-card.large h2 {
    font-size: 1.9rem
}

.quote-section {
    background: #ecefe9;
    position: relative
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 12rem;
    line-height: .5;
    color: rgba(46, 107, 91, .12);
    text-align: center
}

.carousel-item blockquote {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1.55;
    letter-spacing: -.03em;
    text-align: center;
    font-weight: 500
}

.quote-author {
    text-align: center;
    margin-top: 25px
}

.quote-author strong,
.quote-author span {
    display: block
}

.quote-author span {
    font-size: .75rem;
    color: var(--muted)
}

.carousel-controls {
    text-align: center;
    margin-top: 30px
}

.carousel-controls button {
    border: 1px solid var(--line);
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 0 4px;
    color: var(--primary)
}

.news-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    transition: .3s
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.news-image {
    height: 220px;
    background-size: cover;
    background-position: center
}

.news-image span {
    display: inline-block;
    margin: 15px;
    background: #fff;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: .65rem
}

.image-placeholder {
    background: linear-gradient(135deg, #dce8e1, #eee7d8);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 2rem
}

.news-card h3 {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 10px 0
}

.news-card h3 a {
    color: var(--ink);
    text-decoration: none
}

.news-card p {
    color: var(--muted);
    font-size: .84rem
}

.text-link {
    color: var(--primary);
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none
}

.admission-cta {
    padding: 0 0 120px
}

.cta-panel {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 36px;
    padding: 75px 30px
}

.cta-panel h2 {
    max-width: 850px;
    margin: 15px auto 35px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.25
}

.page-hero {
    padding: 110px 0 90px;
    background: var(--primary-dark);
    color: #fff
}

.page-hero .eyebrow {
    color: #d9c27f
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.1;
    letter-spacing: -.05em;
    max-width: 950px;
    margin: 15px 0
}

.page-hero p {
    max-width: 700px;
    color: #c1d0c8;
    font-size: 1.05rem
}

.page-hero.compact {
    padding-bottom: 70px
}

.soft-section {
    background: #eef1ed
}

.editorial-box {
    background: var(--primary);
    color: #fff;
    border-radius: 32px;
    padding: 55px
}

.editorial-box span {
    color: #e2ca83;
    font-size: .75rem
}

.editorial-box h3 {
    font-size: 2.1rem;
    line-height: 1.4;
    margin: 15px 0
}

.editorial-box p {
    color: #d2dfd8
}

.value-card {
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px
}

.value-card b {
    font-size: 1.25rem
}

.facility-card {
    height: 100%;
    padding: 35px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 25px
}

.facility-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #e9f0eb;
    color: var(--primary);
    font-size: 1.4rem
}

.facility-card h3 {
    font-size: 1.2rem;
    margin: 22px 0 8px
}

.gallery-tile {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow)
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-tile span {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #fff;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: .7rem;
    color: var(--ink)
}

.person-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 25px;
    overflow: hidden
}

.person-card img,
.person-placeholder {
    width: 100%;
    height: 340px;
    object-fit: cover
}

.person-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #dce8e1, #f0e9db);
    font-size: 4rem;
    color: var(--primary)
}

.person-card>div:last-child {
    padding: 25px
}

.person-card span {
    font-size: .7rem;
    color: var(--primary)
}

.person-card h3 {
    font-size: 1.2rem;
    margin: 5px 0 8px
}

.admission-steps {
    max-width: 900px;
    margin: auto
}

.admission-step {
    display: grid;
    grid-template-columns: 60px 60px 1fr;
    gap: 25px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--line)
}

.step-number {
    font-size: .7rem;
    color: var(--muted)
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8efea;
    color: var(--primary)
}

.admission-step h3 {
    font-size: 1.25rem;
    margin: 0 0 6px
}

.admission-step p {
    color: var(--muted);
    margin: 0;
    font-size: .9rem
}

.faq .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line)
}

.faq .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 700;
    padding: 24px 0
}

.faq .accordion-button:not(.collapsed) {
    color: var(--primary)
}

.faq .accordion-body {
    color: var(--muted);
    padding: 0 0 24px
}

.gallery-photo {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff
}

.gallery-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover
}

.gallery-photo figcaption {
    font-size: .7rem;
    padding: 9px 12px
}

.empty-gallery {
    border: 1px dashed #bcc9c2;
    padding: 45px;
    text-align: center;
    border-radius: 20px;
    color: var(--muted)
}

.form-panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(23, 53, 46, .05)
}

label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 7px
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #d8dfdb;
    border-radius: 13px;
    background: #fbfcfb;
    padding: 12px 14px;
    outline: none;
    font-family: inherit;
    transition: .2s
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 107, 91, .08)
}

.contact-info>div {
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.contact-info i {
    color: var(--primary);
    font-size: 1.3rem
}

.contact-info span {
    display: block;
    font-size: .7rem;
    color: var(--muted);
    margin-top: 7px
}

.contact-info p {
    margin: 3px 0;
    font-size: .9rem
}

.article-body {
    font-size: 1.05rem;
    line-height: 2.2
}

.pagination-wrap .page-link {
    color: var(--primary);
    border-color: var(--line)
}

.pagination-wrap .active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.site-footer {
    background: var(--primary-dark);
    color: #d6e1dc;
    padding: 80px 0 25px
}

.footer-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff
}

.footer-brand small {
    color: #aabcb4
}

.footer-copy {
    color: #aebeb7;
    max-width: 470px
}

.site-footer h6 {
    color: #fff;
    margin-bottom: 20px
}

.site-footer a {
    display: block;
    color: #aebeb7;
    text-decoration: none;
    font-size: .82rem;
    margin: 9px 0
}

.site-footer a:hover {
    color: #fff
}

.site-footer p {
    font-size: .8rem;
    color: #aebeb7
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 55px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #81958c;
    font-size: .7rem
}

.back-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.back-top.show {
    opacity: 1;
    visibility: visible
}

.flash-wrap {
    position: relative;
    z-index: 1001;
    margin-top: 15px
}

.error-page {
    min-height: 65vh;
    display: grid;
    place-items: center;
    text-align: center
}

.error-page span {
    font-size: 7rem;
    font-weight: 800;
    color: var(--primary)
}

.error-page h1 {
    font-size: 2rem
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes pulse {
    50% {
        transform: scale(1.08)
    }
}

@media(max-width:991px) {
    .site-nav {
        height: auto
    }

    .hero {
        padding: 75px 0
    }

    .hero-title {
        font-size: 3.4rem
    }

    .floating-card {
        right: 10px
    }

    .section-space {
        padding: 85px 0
    }

    .section-header {
        display: block
    }

    .section-header .text-link {
        display: inline-block;
        margin-top: 18px
    }

    .story-panel {
        padding: 40px
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 6px
    }
}

@media(max-width:575px) {
    .announcement {
        font-size: .68rem
    }

    .announcement .container {
        display: block;
        text-align: center
    }

    .announcement a {
        display: block
    }

    .hero-title {
        font-size: 2.7rem
    }

    .hero-text {
        font-size: 1rem
    }

    .hero-photo {
        transform: none
    }

    .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -25px;
        margin-right: 20px
    }

    .display-title {
        font-size: 2.5rem
    }

    .page-hero {
        padding: 80px 0 65px
    }

    .page-hero h1 {
        font-size: 3rem
    }

    .admission-step {
        grid-template-columns: 45px 48px 1fr;
        gap: 12px
    }

    .form-panel {
        padding: 25px
    }

    .cta-panel {
        padding: 50px 20px
    }

    .timeline {
        padding-right: 18px
    }

    .timeline div {
        gap: 12px
    }
}

/* Hamelm integration */
.nav-hamelm-link {
    font-weight: 800 !important;
    color: #1c3320 !important
}

.hamelm-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #69B631;
    margin-left: 6px;
    vertical-align: middle;
    box-shadow: 0 0 0 4px rgba(105, 182, 49, .12)
}

.hamelm-home-section {
    padding-top: 30px
}

.hamelm-home-panel {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 36px;
    padding: 65px
}

.hamelm-home-panel h2 {
    font-size: clamp(2.3rem, 4.4vw, 4.5rem);
    line-height: 1.2;
    letter-spacing: -.045em;
    font-weight: 800;
    max-width: 700px
}

.hamelm-home-panel h2 span {
    color: #69B631
}

.hamelm-eyebrow {
    color: #a9d97e
}

.hamelm-home-lead {
    color: #c8d8d0;
    max-width: 650px;
    font-size: 1rem
}

.hamelm-mini-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
    max-width: 650px
}

.hamelm-mini-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 15px;
    background: rgba(255, 255, 255, .045);
    font-size: .8rem
}

.hamelm-mini-features i {
    color: #69B631;
    font-size: 1rem
}

.hamelm-home-visual {
    position: relative;
    min-height: 370px;
    display: grid;
    place-items: center
}

.hamelm-screen {
    width: min(100%, 390px);
    background: #f7faf7;
    border: 10px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
    transform: rotate(-2deg);
    overflow: hidden;
    color: #1c3320
}

.screen-top {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    border-bottom: 1px solid #e2e9e4;
    background: #fff
}

.screen-top span:not(.screen-dot) {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9d4ce
}

.screen-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #69B631
}

.screen-top b {
    margin-right: auto;
    font-size: .68rem
}

.screen-grid {
    display: grid;
    grid-template-columns: 52px 1fr;
    min-height: 285px
}

.screen-sidebar {
    background: #edf4ee;
    padding: 12px 7px;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.screen-sidebar i {
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #4b765f;
    font-size: .82rem
}

.screen-sidebar i:first-child {
    background: #dff0d5;
    color: #4f941f
}

.screen-content {
    padding: 15px;
    background: #f8faf8
}

.screen-title {
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 14px
}

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

.screen-cards span {
    height: 55px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e9e4
}

.screen-cards span:first-child {
    background: #e5f2dd;
    border-color: #cfe7c3
}

.screen-chart {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #e2e9e4;
    border-radius: 12px;
    height: 125px;
    padding: 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px
}

.screen-chart i {
    color: #69B631;
    font-size: 2rem
}

.screen-chart small {
    font-size: .65rem;
    color: #74827c;
    margin-bottom: 3px
}

.hamelm-float-card {
    position: absolute;
    right: -5px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1c3320;
    border-radius: 17px;
    padding: 13px 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    min-width: 190px
}

.hamelm-float-card>i {
    font-size: 1.5rem;
    color: #69B631
}

.hamelm-float-card small,
.hamelm-float-card strong {
    display: block
}

.hamelm-float-card small {
    font-size: .62rem;
    color: #7b8882
}

.hamelm-float-card strong {
    font-size: .78rem
}

@media(max-width:991px) {
    .hamelm-home-panel {
        padding: 45px 28px
    }

    .hamelm-home-visual {
        margin-top: 15px
    }

    .hamelm-float-card {
        right: 5px
    }
}

@media(max-width:575px) {
    .hamelm-mini-features {
        grid-template-columns: 1fr
    }

    .hamelm-home-panel h2 {
        font-size: 2.35rem
    }

    .hamelm-home-visual {
        min-height: 330px
    }

    .hamelm-screen {
        width: 100%
    }
}