.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 60, 110, 0.95), rgba(17, 134, 89, 0.82));
    color: #fff;
    padding: 104px 0 88px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.32;
}

.hero::before {
    width: 420px;
    height: 420px;
    top: -140px;
    left: -80px;
    background: rgba(225, 160, 53, 0.65);
}

.hero::after {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -120px;
    background: rgba(255, 255, 255, 0.18);
}

.home-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.home-hero__content h1 {
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.home-hero__content p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    margin-bottom: 28px;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
    font-size: 0.86rem;
    font-weight: 600;
}

.home-hero__badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--secondary);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.home-hero__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-hero__metric {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-hero__metric strong {
    display: block;
    color: #fff;
    font-size: 1.85rem;
    font-family: "Poppins", sans-serif;
}

.home-hero__metric span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
}

.home-hero__visual {
    position: relative;
}

.home-hero__visual-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(4, 19, 31, 0.22);
    overflow: hidden;
}

.home-hero__visual-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.slider,
.slide,
.slide-overlay,
.slider__nav,
.slider__dots {
    all: unset;
}

.home-trust-strip {
    margin-top: -32px;
    position: relative;
    z-index: 2;
}

.home-trust-strip__card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.home-trust-strip__item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.home-trust-strip__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(0, 60, 110, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.home-trust-strip__item h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.home-pillar-section {
    padding-top: 88px;
}

.home-pillar-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-pillar-card {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.home-pillar-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 700;
    background: rgba(0, 60, 110, 0.08);
    color: var(--primary);
}

.home-pillar-card--home .home-pillar-card__icon {
    background: rgba(225, 160, 53, 0.18);
    color: #8b5700;
}

.home-pillar-card--medical .home-pillar-card__icon {
    background: rgba(17, 134, 89, 0.12);
    color: var(--accent);
}

.home-pillar-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.services-section {
    background: transparent;
}

.services-group + .services-group {
    margin-top: 28px;
}

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

.service-card-wrapper a,
.post-card-wrapper a {
    display: block;
    height: 100%;
}

.about-section {
    padding-top: 16px;
}

.about-flex {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 32px;
    align-items: center;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
    border-radius: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-box {
    gap: 14px;
}

.feature-box .icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(0, 60, 110, 0.08);
    color: var(--primary);
}

.split-testimonials-section,
.team-section,
.recent-posts-section,
.sd-faq-section,
.stats-banner-section {
    background: transparent;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.why-choose-column,
.testimonials-column {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.testimonials-column {
    border-left: 1px solid var(--border);
}

.vertical-slider-window {
    height: auto;
}

.vertical-slider-track {
    display: grid;
    gap: 16px;
}

.testimonial-slide-split {
    padding: 24px;
}

.testimonial-slide-split::before,
.testimonials-column::before {
    display: none;
}

.team-slider-window,
.posts-slider-window {
    overflow: visible;
}

.team-slider-track {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card-wrapper,
.post-card-wrapper {
    padding: 0;
}

.team-card {
    overflow: hidden;
}

.team-img-wrapper {
    height: auto;
}

.stats-banner-section .stat-numbers-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 22px;
    padding: 32px;
    border-radius: 28px;
}

.stats-banner-section .stat-icon {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.72);
}

.stats-banner-section .stat-number {
    margin-bottom: 14px;
}

.recent-posts-section .post-content {
    text-align: left;
}

.sd-map-frame
{
    height: 500px;
}

@media (max-width: 1100px) {
    .home-hero,
    .about-flex,
    .split-layout,
    .team-slider-track,
    .home-pillar-grid {
        grid-template-columns: 1fr;
    }

    .home-hero__metrics,
    .home-trust-strip__card,
    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 88px 0 72px;
    }

    .home-trust-strip__card,
    .home-hero__metrics,
    .about-grid,
    .posts-slider-track,
    .stats-banner-section .stat-numbers-box {
        grid-template-columns: 1fr;
    }
}
