/* ==================== Global Styles Start ==================== */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --page-bg: #f7f7f6;
    --dark: #17251d;
    --text: #17231b;
    --muted: #747875;
    --green: #247d6d;
    --green-dark: #163f37;
    --lime: #a8fa8e;
    --soft-lime: #efffe9;
    --lime-border: #9cf47f;
    --gray-card: #efefee;
    --white: #ffffff;
    --container: 1240px;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(168, 250, 142, 0.14), transparent 30%),
        radial-gradient(circle at top right, rgba(36, 125, 109, 0.08), transparent 22%),
        linear-gradient(180deg, #f8f9f7 0%, var(--page-bg) 100%);
    color: var(--dark);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    border: 0px;
    outline: 0px;
    font-family: inherit;
    background: transparent;
}

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

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

/* ==================== Global Styles End ==================== */



/* ==================== Header Section Start ==================== */

.site-header {
    position: relative;
    z-index: 100;
    width: 100%;
    padding-top: 24px;
    background: rgba(247, 247, 246, 0.86);
    backdrop-filter: blur(12px);
}

.header-container {
    min-height: 48px;
    display: grid;
    grid-template-columns: 210px 1fr 240px;
    align-items: center;
    gap: 24px;
}

.brand-logo, .mobile-brand-logo {
    width: 220px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-logo img, .mobile-brand-logo img {
    width: 220px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.18px;
    white-space: nowrap;
    transition: color 0.25s;
}

.nav-link:hover {
    color: var(--green);
}

.nav-link ion-icon, .language-btn ion-icon, .mobile-language-btn ion-icon {
    font-size: 15px;
    --ionicon-stroke-width: 42px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 31px;
}

.language-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.18px;
    cursor: pointer;
}

.contact-btn {
    min-width: 131px;
    height: 48px;
    padding: 0px 24px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15.5px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.18px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(103, 220, 78, 0.28) 0px 16px 34px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgba(18, 31, 22, 0.08) 0px 12px 28px;
}

.menu-toggle ion-icon {
    font-size: 26px;
    --ionicon-stroke-width: 44px;
}

.nav-panel-top, .mobile-nav-footer {
    display: none;
}

.menu-overlay {
    position: fixed;
    inset: 0px;
    z-index: 90;
    background: rgba(10, 18, 13, 0.48);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s, visibility 0.32s;
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ==================== Header Section End ==================== */




/* ==================== Hero Section Start ==================== */

.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: calc(-72px + 100vh);
    padding: 64px 0px 80px;
    overflow: hidden;
    background: var(--page-bg);
}

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

.hero-star {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    animation: 14s linear 0s infinite normal none running starSpin;
}

.hero-star-left {
    width: 47px;
    height: 47px;
    top: 145px;
    left: calc(50% - 520px);
}

.hero-star-right {
    width: 39px;
    height: 39px;
    top: 279px;
    right: calc(50% - 520px);
    animation-duration: 16s;
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.hero-content {
    max-width: 770px;
    margin-inline: auto;
    text-align: center;
}

.hero-badge {
    width: fit-content;
    min-height: 31px;
    margin: 0px auto 31px;
    padding: 5px 14px 5px 12px;
    border: 1px solid var(--lime-border);
    border-radius: 999px;
    background: rgba(168, 250, 142, 0.15);
    color: rgb(48, 72, 58);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14.5px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.14px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
    flex-shrink: 0;
}

.hero-content h1 {
    max-width: 640px;
    margin-inline: auto;
    color: var(--dark);
    font-size: clamp(60px, 6.14vw, 72px);
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: -1.9px;
}

.hero-content p {
    max-width: 684px;
    margin: 27px auto 0px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.58;
    font-weight: 500;
    letter-spacing: -0.35px;
}

.hero-actions {
    margin-top: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.primary-btn, .outline-btn {
    height: 57px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15.5px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.22px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
}

.primary-btn {
    min-width: 178px;
    padding: 0px 25px;
    gap: 15px;
    background: var(--green);
    color: var(--white);
}

.primary-btn ion-icon {
    font-size: 20px;
    --ionicon-stroke-width: 38px;
}

.outline-btn {
    min-width: 169px;
    padding: 0px 25px;
    border: 1px solid rgba(27, 43, 32, 0.48);
    color: rgb(29, 41, 34);
    background: transparent;
}

.primary-btn:hover, .outline-btn:hover {
    transform: translateY(-2px);
}

.primary-btn:hover {
    box-shadow: rgba(36, 125, 109, 0.26) 0px 18px 34px;
}

.outline-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.hero-stats {
    margin-top: 63px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 24px;
}

.stat-card, .hero-image-card, .growth-card {
    border-radius: 22px;
    overflow: hidden;
}

.stat-card {
    height: 169px;
    padding: 27px 24px 22px;
}

.stat-card-green {
    background: var(--soft-lime);
    border: 1px solid var(--lime-border);
}

.stat-card-gray {
    background: var(--gray-card);
}

.stat-card h2, .growth-card h2 {
    color: var(--dark);
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2.7px;
}

.stat-card p {
    max-width: 230px;
    margin-top: 17px;
    color: rgb(115, 120, 116);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.32px;
}

.hero-image-card {
    height: 328px;
    background: rgb(232, 235, 232);
}

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

.growth-card {
    position: relative;
    height: 328px;
    padding: 24px 24px 25px;
    background: rgb(5, 37, 31);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.growth-card::after {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
    background: linear-gradient(rgba(5, 37, 31, 0.02) 0%, rgba(5, 37, 31, 0.2) 42%, rgba(5, 37, 31, 0.88) 100%);
    pointer-events: none;
}

.growth-card-bg {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.growth-chart-img {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    width: 244px;
    height: 132px;
    object-fit: contain;
    object-position: left bottom;
    animation: 2.2s ease-in-out 0s infinite alternate none running chartFloat;
}

@keyframes chartFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-5px);
    }
}

.growth-card-content {
    position: relative;
    z-index: 3;
}

.growth-card h2 {
    color: var(--white);
    font-size: 50px;
    letter-spacing: -2.35px;
}

.growth-card p {
    margin-top: 17px;
    color: var(--white);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: -0.35px;
}

.growth-card strong {
    font-weight: 800;
}

.partner-logos {
    width: 100%;
    margin-top: 66px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.partner-slider {
    width: 100%;
    overflow: hidden;
}

.partner-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 64px;
    animation: partnerAutoSlide 24s linear infinite;
    will-change: transform;
}

.partner-slider:hover .partner-track {
    animation-play-state: paused;
}

.partner-group {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-shrink: 0;
}

.partner-logo {
    min-width: 165px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.82;
    transition: opacity 0.25s, transform 0.25s, filter 0.25s;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0px 10px 18px rgba(23, 37, 29, 0.08));
}

.partner-logo img {
    width: auto;
    height: 42px;
    object-fit: contain;
    filter: grayscale(100%) contrast(0.01) brightness(0.96);
}

@keyframes partnerAutoSlide {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(calc(-50% - 32px));
    }
}

/* ==================== Hero Section End ==================== */




/* ==================== Animation Styles Start ==================== */

.reveal-animation {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.85s, transform 0.85s;
}

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

.hero-stats .reveal-animation:nth-child(2) {
    transition-delay: 0.08s;
}

.hero-stats .reveal-animation:nth-child(3) {
    transition-delay: 0.16s;
}

.hero-stats .reveal-animation:nth-child(4) {
    transition-delay: 0.24s;
}

/* ==================== Animation Styles End ==================== */




/* ==================== Responsive Styles Start ==================== */

@media (min-width: 1600px) {
    .container {
        width: min(calc(100% - 220px), var(--container));
    }
}

@media (max-width: 1400px) {
    .container {
        width: min(100% - 96px, 1280px);
    }

    .header-container {
        grid-template-columns: 190px 1fr 230px;
    }

    .nav-links {
        gap: 30px;
    }

    .hero-star-left {
        left: 8%;
    }

    .hero-star-right {
        right: 8%;
    }

    .partner-logo img {
        height: 38px;
    }
}

@media (max-width: 1120px) {
    .container {
        width: min(100% - 64px, 980px);
    }

    .header-container {
        grid-template-columns: auto auto;
    }

    .brand-logo {
        width: 190px;
    }

    .brand-logo img {
        width: 190px;
    }

    .main-nav {
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 120;
        width: min(84vw, 380px);
        height: 100dvh;
        padding: 24px;
        background: rgb(255, 255, 255);
        box-shadow: none;
        transform: translateX(calc(-100% - 80px));
        transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        will-change: transform;
    }

    .main-nav.is-active {
        transform: translateX(0px);
        box-shadow: rgba(18, 31, 22, 0.18) 24px 0px 70px;
    }

    .nav-panel-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(23, 37, 29, 0.1);
    }

    .mobile-brand-logo {
        width: 180px;
        height: auto;
    }

    .mobile-brand-logo img {
        width: 180px;
    }

    .nav-close {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgb(243, 245, 242);
        color: var(--text);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .nav-close ion-icon {
        font-size: 25px;
        --ionicon-stroke-width: 44px;
    }

    .nav-links {
        width: 100%;
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
    }

    .nav-link {
        width: 100%;
        min-height: 54px;
        padding: 0px 16px;
        border-radius: 16px;
        color: var(--text);
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -0.45px;
        text-align: center;
        justify-content: center;
    }

    .nav-link:hover {
        color: var(--green);
        background: rgba(168, 250, 142, 0.28);
    }

    .mobile-nav-footer {
        display: grid;
        gap: 12px;
        margin-top: auto;
        padding-top: 24px;
    }

    .mobile-language-btn, .mobile-contact-btn {
        width: 100%;
        height: 54px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15.5px;
        font-weight: 700;
        letter-spacing: -0.2px;
    }

    .mobile-language-btn {
        gap: 8px;
        color: var(--text);
        background: rgb(244, 245, 243);
    }

    .mobile-contact-btn {
        color: var(--text);
        background: var(--lime);
    }

    .header-actions {
        gap: 18px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-section {
        padding-top: 58px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0px, 1fr));
        align-items: stretch;
        gap: 22px;
    }

    .stat-card, .hero-image-card, .growth-card {
        height: 270px;
    }

    .stat-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .growth-chart-img {
        width: 230px;
    }

    .partner-track {
        gap: 54px;
        animation-duration: 22s;
    }

    .partner-group {
        gap: 54px;
    }

    .partner-logo {
        min-width: 150px;
    }
}

@media (max-width: 960px) {
    .site-header {
        padding-top: 18px;
    }

    .language-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: clamp(48px, 8vw, 64px);
        letter-spacing: -3.7px;
    }

    .hero-star-left {
        top: 126px;
        left: 6%;
    }

    .hero-star-right {
        top: 300px;
        right: 6%;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 32px, 620px);
    }

    .brand-logo {
        width: 156px;
    }

    .brand-logo img {
        width: 156px;
    }

    .contact-btn {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 42px 0px 32px;
    }

    .hero-badge {
        min-height: 30px;
        margin-bottom: 24px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .hero-content h1 {
        max-width: 500px;
        font-size: clamp(40px, 11vw, 54px);
        line-height: 1.1;
        letter-spacing: -2.8px;
    }

    .hero-content p {
        max-width: 520px;
        margin-top: 22px;
        font-size: 15.5px;
        line-height: 1.6;
        letter-spacing: -0.28px;
    }

    .hero-actions {
        margin-top: 27px;
        flex-direction: column;
    }

    .primary-btn, .outline-btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        margin-top: 48px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stat-card, .hero-image-card, .growth-card {
        height: auto;
        min-height: 212px;
        border-radius: 20px;
    }

    .hero-image-card {
        min-height: 320px;
    }

    .growth-card {
        min-height: 310px;
    }

    .stat-card h2, .growth-card h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .growth-chart-img {
        width: 78%;
        max-width: 244px;
    }

    .partner-logos {
        margin-top: 45px;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    }

    .partner-track {
        gap: 42px;
        animation-duration: 18s;
    }

    .partner-group {
        gap: 42px;
    }

    .partner-logo {
        min-width: 132px;
    }

    .partner-logo img {
        height: 34px;
    }

    .hero-star {
        opacity: 0.68;
    }

    .hero-star-left {
        width: 34px;
        height: 34px;
        top: 114px;
        left: 8%;
    }

    .hero-star-right {
        width: 30px;
        height: 30px;
        top: 314px;
        right: 8%;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding-top: 16px;
    }

    .header-container {
        gap: 14px;
    }

    .brand-logo {
        width: 145px;
    }

    .brand-logo img {
        width: 145px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .main-nav {
        width: min(88vw, 300px);
        padding: 20px;
        transform: translateX(calc(-100% - 80px));
    }

    .main-nav.is-active {
        transform: translateX(0px);
    }

    .mobile-brand-logo, .mobile-brand-logo img {
        width: 145px;
    }

    .nav-link {
        min-height: 52px;
        font-size: 17px;
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 38px;
        letter-spacing: -2.35px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-image-card {
        min-height: 275px;
    }

    .growth-card {
        padding: 22px;
    }

    .partner-track {
        gap: 34px;
        animation-duration: 16s;
    }

    .partner-group {
        gap: 34px;
    }

    .partner-logo {
        min-width: 120px;
    }

    .partner-logo img {
        height: 30px;
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .brand-logo, .brand-logo img {
        width: 140px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-badge {
        padding-inline: 10px;
        font-size: 12px;
    }

    .stat-card, .growth-card {
        padding: 22px 20px;
    }

    .partner-logo {
        min-width: 112px;
    }
}

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

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

    .partner-track {
        animation: none !important;
        transform: translateX(0px) !important;
    }
}

/* ==================== Responsive Styles End ==================== */




/* ==================== Shared Section Styles Start ==================== */

.section-panel {
    background: var(--white);
}

.section-badge {
    width: fit-content;
    min-height: 31px;
    padding: 5px 14px 5px 12px;
    border: 1px solid var(--lime-border);
    border-radius: 999px;
    background: rgba(168, 250, 142, 0.15);
    color: rgb(48, 72, 58);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.14px;
}

.section-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text);
    flex-shrink: 0;
}

.section-heading {
    max-width: 610px;
    color: var(--dark);
    font-size: clamp(40px, 3.8vw, 48px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1.005px;
}

.section-copy {
    max-width: 660px;
    color: var(--muted);
    font-size: 17.5px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.38px;
}

/* ==================== Shared Section Styles End ==================== */



/* ==================== About Section Start ==================== */

.about-section {
    padding: 100px 0px 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(420px, 562px) minmax(500px, 1fr);
    align-items: start;
    gap: 60px;
}

.about-media-card {
    position: relative;
    min-height: 760px;
    border-radius: 22px;
    overflow: hidden;
    background: rgb(232, 235, 232);
}

.about-media-card::after {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 26%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.68) 100%);
    pointer-events: none;
}

.about-main-img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
}

.about-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: rgba(168, 250, 142, 0.34) 0px 22px 44px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.about-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: rgba(168, 250, 142, 0.46) 0px 28px 60px;
}

.about-play-btn ion-icon {
    margin-left: 7px;
    font-size: 44px;
}

.about-media-content {
    position: absolute;
    left: 24px;
    right: 28px;
    bottom: 26px;
    z-index: 3;
    color: var(--white);
}

.about-media-content h3 {
    max-width: 520px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.001px;
}

.about-media-content p {
    max-width: 520px;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.48;
    font-weight: 400;
    letter-spacing: -0.002px;
}

.about-content {
    padding-top: 0px;
}

.about-content .section-heading {
    margin-top: 30px;
}

.about-content .section-copy {
    margin-top: 24px;
}

.about-feature-grid {
    margin-top: 76px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 24px;
}

.about-feature-card {
    min-height: 198px;
    padding: 30px 24px 25px;
    border-radius: 22px;
    background: var(--gray-card);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    background: rgb(176 255 148);
    box-shadow: rgb(23 37 29 / 5%) 0px 18px 40px;
}

.about-icon {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-icon img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.about-feature-card h3 {
    margin-top: 23px;
    color: var(--dark);
    font-size: 17.5px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.42px;
    text-align: center;
}

.about-feature-card p {
    max-width: 225px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 17.5px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.about-stats {
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 32px;
    justify-content: center;
    text-align: center;
}

.about-stat-item h3 {
    color: var(--dark);
    font-size: clamp(58px, 4vw, 74px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2.2px;
}

.about-stat-item p {
    margin-top: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.35px;
}

@media (max-width: 1400px) {
    .about-grid {
        grid-template-columns: minmax(400px, 540px) minmax(480px, 1fr);
        gap: 40px;
    }

    .about-media-card, .about-main-img {
        min-height: 772px;
    }

    .about-feature-grid {
        margin-top: 40px;
    }
}

@media (max-width: 1120px) {
    .section-heading {
        font-size: clamp(38px, 5vw, 50px);
    }

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

    .about-media-card, .about-main-img {
        min-height: 560px;
    }

    .about-content {
        max-width: 760px;
    }

    .about-feature-grid {
        margin-top: 42px;
    }

    .about-stats {
        margin-top: 70px;
        grid-template-columns: repeat(2, 1fr);
        gap: 46px 32px;
    }
}

@media (max-width: 720px) {
    .about-section {
        padding: 54px 0px 56px;
    }

    .section-badge {
        font-size: 13px;
    }

    .section-heading {
        font-size: clamp(32px, 8.8vw, 42px);
        line-height: 1.14;
        letter-spacing: -1.15px;
    }

    .section-copy {
        font-size: 16px;
        line-height: 1.62;
    }

    .about-grid {
        gap: 38px;
    }

    .about-media-card, .about-main-img {
        min-height: 470px;
    }

    .about-play-btn {
        width: 76px;
        height: 76px;
    }

    .about-play-btn ion-icon {
        font-size: 35px;
    }

    .about-media-content {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

    .about-media-content h3 {
        font-size: 26px;
    }

    .about-media-content p {
        margin-top: 10px;
        font-size: 18px;
    }

    .about-content .section-heading {
        margin-top: 24px;
    }

    .about-content .section-copy {
        margin-top: 18px;
    }

    .about-feature-grid {
        margin-top: 34px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-feature-card {
        min-height: auto;
        padding: 25px 22px 24px;
    }

    .about-feature-card p {
        max-width: 100%;
        font-size: 16px;
    }

    .about-stats {
        margin-top: 56px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-stat-item {
        text-align: center;
    }

    .about-stat-item h3 {
        font-size: 54px;
    }

    .about-stat-item p {
        margin-top: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-media-card, .about-main-img {
        min-height: 405px;
    }

    .about-media-content h3 {
        font-size: 23px;
        letter-spacing: -0.7px;
    }

    .about-media-content p {
        font-size: 16px;
    }

    .about-icon, .about-icon img {
        width: 39px;
        height: 39px;
    }

    .about-feature-card h3 {
        font-size: 17px;
    }

    .about-stat-item h3 {
        font-size: 48px;
    }
}

@media (max-width: 360px) {
    .about-media-card, .about-main-img {
        min-height: 360px;
    }

    .about-play-btn {
        width: 68px;
        height: 68px;
    }

    .about-play-btn ion-icon {
        font-size: 31px;
    }
}

/* ==================== About Section End ==================== */




/* ==================== Services Section Start ==================== */

.services-section {
    padding: 100px 0px 100px;
    background: var(--page-bg);
    overflow: hidden;
}

.services-top {
    display: grid;
    grid-template-columns: minmax(480px, 620px) minmax(420px, 1fr);
    align-items: start;
    justify-content: space-between;
    gap: 80px;
}

.services-heading-wrap .section-badge {
    margin-bottom: 31px;
}

.services-heading {
    max-width: 620px;
    font-size: clamp(40px, 3.8vw, 48px);
    line-height: 1.25;
    letter-spacing: -1.005px;
}

.services-copy {
    max-width: 588px;
    margin-top: 66px;
    font-size: 18px;
    line-height: 1.48;
    letter-spacing: -0.42px;
}

.services-grid {
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 548px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    background: rgb(232, 235, 232);
    transform: translateY(0px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.267) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.842) 100%);
    pointer-events: none;
}

.service-card img {
    width: 100%;
    height: 100%;
    min-height: 548px;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: rgba(23, 37, 29, 0.12) 0px 26px 60px;
}

.service-card:hover img {
    transform: scale(1.055);
}

.service-arrow {
    position: absolute;
    top: 25px;
    right: 26px;
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.service-arrow-active {
    background: var(--lime);
}

.service-arrow ion-icon {
    font-size: 31px;
    --ionicon-stroke-width: 32px;
    transform: rotate(-45deg);
}

.service-card:hover .service-arrow {
    background: var(--lime);
    transform: scale(1.06);
}

.service-content {
    position: absolute;
    left: 24px;
    right: 26px;
    bottom: 25px;
    z-index: 3;
    color: var(--white);
}

.service-content h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.65px;
}

.service-content p {
    max-width: 340px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.47;
    font-weight: 500;
    letter-spacing: -0.42px;
}

.services-grid .reveal-animation:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .reveal-animation:nth-child(3) {
    transition-delay: 0.2s;
}

@media (max-width: 1400px) {
    .services-top {
        grid-template-columns: minmax(450px, 620px) minmax(390px, 1fr);
        gap: 64px;
    }

    .service-card, .service-card img {
        min-height: 520px;
    }
}

@media (max-width: 1120px) {
    .services-section {
        padding: 84px 0px 88px;
    }

    .services-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-copy {
        max-width: 720px;
        margin-top: 0px;
    }

    .services-grid {
        margin-top: 48px;
        grid-template-columns: repeat(2, minmax(0px, 1fr));
    }

    .service-card:first-child {
        grid-column: span 2;
    }

    .service-card, .service-card img {
        min-height: 500px;
    }
}

@media (max-width: 720px) {
    .services-section {
        padding: 64px 0px 68px;
    }

    .services-heading-wrap .section-badge {
        margin-bottom: 24px;
    }

    .services-heading {
        font-size: clamp(32px, 8.8vw, 42px);
        line-height: 1.14;
        letter-spacing: -1.15px;
    }

    .services-copy {
        font-size: 16px;
        line-height: 1.62;
    }

    .services-grid {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card:first-child {
        grid-column: auto;
    }

    .service-card, .service-card img {
        min-height: 440px;
    }

    .service-arrow {
        width: 54px;
        height: 54px;
        top: 20px;
        right: 20px;
    }

    .service-arrow ion-icon {
        font-size: 28px;
    }

    .service-content {
        left: 22px;
        right: 22px;
        bottom: 23px;
    }

    .service-content h3 {
        font-size: 23px;
    }

    .service-content p {
        max-width: 100%;
        margin-top: 13px;
        font-size: 16px;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 56px 0px 60px;
    }

    .service-card, .service-card img {
        min-height: 390px;
    }

    .service-arrow {
        width: 50px;
        height: 50px;
    }

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

    .service-content p {
        font-size: 15.5px;
    }
}

@media (max-width: 360px) {
    .service-card, .service-card img {
        min-height: 360px;
    }

    .service-content {
        left: 19px;
        right: 19px;
    }
}

/* ==================== Services Section End ==================== */



/* ==================== Projects Section Start ==================== */

.projects-section {
    position: relative;
    padding: 100px 0px 100px;
    background: rgb(0, 0, 0);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.projects-bg {
    position: absolute;
    inset: 0px;
    z-index: -2;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.92) 100%), url("../images/projects-bg.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.projects-header {
    max-width: 650px;
    margin: 0px auto;
    text-align: center;
}

.projects-badge {
    width: fit-content;
    min-height: 31px;
    margin: 0px auto 29px;
    padding: 5px 15px 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.14px;
    box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 16px;
    backdrop-filter: blur(10px);
}

.projects-badge span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
}

.projects-header h2 {
    color: var(--white);
    font-size: clamp(40px, 3.8vw, 48px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1.005px;
}

.projects-header p {
    max-width: 520px;
    margin: 27px auto 0px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.48;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.projects-showcase {
    margin-top: 52px;
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: center;
    gap: 48px;
}

.projects-tabs {
    display: grid;
    gap: 24px;
}

.project-tab {
    width: 100%;
    min-height: 156px;
    padding: 29px 24px 25px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 36px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.65px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(7px);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.project-tab:hover,
.project-tab.is-active {
    border-color: var(--lime);
    background: rgba(168, 250, 142, 0.08);
    transform: translateY(-3px);
    box-shadow: inset rgba(168, 250, 142, 0.16) 0px 0px 32px, rgba(0, 0, 0, 0.28) 0px 18px 42px;
}

.project-tab-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.project-tab-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.projects-gallery-wrap {
    position: relative;
    padding-right: 92px;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 24px;
    transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.projects-gallery.is-changing {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(7px);
}

.project-card {
    position: relative;
    min-height: 246px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    background: rgb(18, 24, 21);
    transform: translateY(0px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 22%, rgba(0, 0, 0, 0.24) 60%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.project-card img {
    width: 100%;
    height: 265px;
    min-height: 246px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.55s ease, filter 0.35s ease;
}

.project-card h3 {
    position: absolute;
    left: 24px;
    right: 22px;
    bottom: 24px;
    z-index: 2;
    color: var(--white);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.42px;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.34) 0px 24px 54px;
}

.project-card:hover img {
    transform: scale(1.055);
    filter: grayscale(60%) contrast(1.05) brightness(0.93);
}

.project-card:first-child::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 26px;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--lime);
    background-image: url("../images/project-arrow.svg");
    background-size: 29px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: rgba(168, 250, 142, 0.28) 0px 18px 32px;
}

.projects-controls {
    position: absolute;
    top: 50%;
    right: 0px;
    display: grid;
    gap: 14px;
    transform: translateY(-50%);
}

.project-control-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.project-control-btn:hover {
    background: var(--lime);
    color: var(--dark);
    border-color: var(--lime);
    transform: scale(1.06);
}

.project-control-btn ion-icon {
    font-size: 30px;
    --ionicon-stroke-width: 32px;
}

@media (max-width: 1400px) {
    .projects-showcase {
        grid-template-columns: 270px 1fr;
        gap: 48px;
    }

    .project-card, .project-card img {
        min-height: 230px;
    }
}

@media (max-width: 1120px) {
    .projects-section {
        padding: 72px 0px 78px;
    }

    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .projects-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .project-tab {
        min-height: 132px;
        gap: 25px;
        padding: 24px 20px 22px;
        font-size: 20px;
    }

    .projects-gallery-wrap {
        padding-right: 0px;
        padding-bottom: 84px;
    }

    .projects-controls {
        top: auto;
        right: 50%;
        bottom: 0px;
        grid-template-columns: repeat(2, auto);
        transform: translateX(50%);
    }
}

@media (max-width: 720px) {
    .projects-section {
        padding: 62px 0px 68px;
    }

    .projects-header h2 {
        font-size: clamp(34px, 9vw, 44px);
        line-height: 1.14;
        letter-spacing: -1.15px;
    }

    .projects-header p {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .projects-showcase {
        margin-top: 40px;
    }

    .projects-tabs {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .project-tab {
        min-height: 84px;
        padding: 18px 20px;
        border-radius: 18px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        font-size: 18px;
    }

    .project-tab-icon,
    .project-tab-icon img {
        width: 38px;
        height: 38px;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-card, .project-card img {
        min-height: 260px;
    }

    .project-card:first-child::before {
        width: 52px;
        height: 52px;
        top: 20px;
        right: 20px;
        background-size: 25px;
    }

    .project-card h3 {
        left: 20px;
        right: 20px;
        bottom: 21px;
        font-size: 17px;
    }

    .project-control-btn {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 56px 0px 62px;
    }

    .projects-badge {
        margin-bottom: 24px;
        font-size: 13px;
    }

    .projects-gallery-wrap {
        padding-bottom: 74px;
    }

    .project-card, .project-card img {
        min-height: 230px;
    }

    .project-tab {
        min-height: 78px;
        font-size: 17px;
    }

    .project-control-btn {
        width: 50px;
        height: 50px;
    }

    .project-control-btn ion-icon {
        font-size: 26px;
    }
}

@media (max-width: 360px) {
    .project-card, .project-card img {
        min-height: 210px;
    }

    .project-tab {
        padding: 16px;
    }
}

/* ==================== Projects Section End ==================== */



/* ==================== Testimonials Section Start ==================== */

.testimonials-section {
    padding: 100px 0px 100px;
    background: var(--page-bg);
    overflow: hidden;
}

.testimonials-container {
    display: grid;
    grid-template-columns: minmax(360px, 400px) minmax(620px, 1fr);
    align-items: start;
    gap: 68px;
}

.testimonials-left .section-badge {
    margin-bottom: 29px;
}

.testimonials-heading {
    max-width: 390px;
    font-size: clamp(40px, 3.8vw, 48px);
    line-height: 1.14;
    letter-spacing: -1.65px;
}

.testimonials-copy {
    max-width: 370px;
    margin-top: 29px;
    font-size: 18px;
    line-height: 1.48;
    letter-spacing: -0.42px;
}

.testimonials-right {
    min-width: 0px;
}

.testimonial-quote {
    max-width: 820px;
    color: var(--dark);
    font-size: clamp(21px, 1.75vw, 25px);
    line-height: 1.38;
    font-weight: 600;
    letter-spacing: -0.66px;
    transition: opacity 0.38s ease, transform 0.38s ease, filter 0.38s ease;
}

.testimonial-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 28px 26px;
    border: 1px solid rgba(23, 37, 29, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 255, 233, 0.55) 100%);
    box-shadow: rgba(18, 31, 22, 0.06) 0px 18px 40px;
}

.testimonial-card .testimonial-quote {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.62;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.testimonial-avatar-r {
    background: linear-gradient(135deg, #247d6d, #163f37);
}

.testimonial-avatar-p {
    background: linear-gradient(135deg, #2f6f5f, #a8fa8e);
    color: var(--dark);
}

.testimonial-avatar-a {
    background: linear-gradient(135deg, #163f37, #5d8f7f);
}

.testimonial-author h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.45px;
}

.testimonial-author p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

/* legacy slider hooks kept for compatibility with the JS file */
.testimonial-bottom {
    margin-top: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: opacity 0.38s ease, transform 0.38s ease, filter 0.38s ease;
}

.testimonial-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
    box-shadow: rgba(23, 37, 29, 0.08) 0px 12px 26px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.testimonial-author h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.35px;
}

.testimonial-author p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.25px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.testimonial-control-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(23, 37, 29, 0.14);
    border-radius: 50%;
    background: transparent;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-control-btn ion-icon {
    font-size: 31px;
    --ionicon-stroke-width: 32px;
}

.testimonial-control-btn:hover,
.testimonial-next {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.testimonial-control-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(23, 37, 29, 0.14) 0px 16px 34px;
}

@media (max-width: 1400px) {
    .testimonials-container {
        grid-template-columns: minmax(340px, 390px) minmax(580px, 1fr);
        gap: 58px;
    }

    .testimonial-quote {
        max-width: 790px;
    }
}

@media (max-width: 1120px) {
    .testimonials-section {
        padding: 84px 0px 84px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .testimonials-heading,
    .testimonials-copy {
        max-width: 620px;
    }

    .testimonial-slider {
        min-height: auto;
    }

    .testimonial-bottom {
        margin-top: 48px;
    }
}

@media (max-width: 720px) {
    .testimonials-section {
        padding: 64px 0px 68px;
    }

    .testimonials-left .section-badge {
        margin-bottom: 24px;
    }

    .testimonials-heading {
        font-size: clamp(32px, 8.8vw, 42px);
        line-height: 1.14;
        letter-spacing: -1.15px;
    }

    .testimonials-copy {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.62;
    }

    .testimonial-quote {
        font-size: 20px;
        line-height: 1.45;
        letter-spacing: -0.48px;
    }

    .testimonial-bottom {
        margin-top: 38px;
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .testimonial-control-btn {
        width: 54px;
        height: 54px;
    }

    .testimonial-control-btn ion-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 56px 0px 62px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonial-author {
        align-items: flex-start;
    }

    .testimonial-avatar {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .testimonial-author h3 {
        font-size: 17px;
    }

    .testimonial-author p {
        font-size: 14px;
        line-height: 1.4;
    }

    .testimonial-control-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 360px) {
    .testimonial-quote {
        font-size: 17px;
    }

    .testimonial-avatar {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}

/* ==================== Testimonials Section End ==================== */



/* ==================== FAQ Section Start ==================== */

.faq-section {
    padding: 100px 0px 100px;
    background: var(--white);
    overflow: hidden;
}

.faq-header {
    max-width: 720px;
    margin: 0px auto;
    text-align: center;
}

.faq-header .section-badge {
    margin-bottom: 30px;
}

.faq-heading {
    max-width: 650px;
    margin-inline: auto;
    font-size: clamp(42px, 4vw, 56px);
    line-height: 1.25;
    letter-spacing: -1.005px;
}

.faq-copy {
    max-width: 620px;
    margin: 27px auto 0px;
    font-size: 18px;
    line-height: 1.48;
    letter-spacing: -0.42px;
}

.faq-list {
    max-width: 980px;
    margin: 55px auto 0px;
    display: grid;
    gap: 24px;
}

.faq-item {
    border: 1px solid rgba(23, 37, 29, 0.09);
    border-radius: 22px;
    background: var(--white);
    overflow: hidden;
    transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: rgba(23, 37, 29, 0.05) 0px 16px 36px;
}

.faq-item.is-active {
    border-color: var(--lime-border);
    background: rgb(232, 255, 223);
}

.faq-question {
    width: 100%;
    min-height: 94px;
    padding: 0px 23px 0px 25px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-size: 21px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.58px;
}

.faq-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(23, 37, 29, 0.08);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.faq-icon ion-icon {
    font-size: 22px;
    --ionicon-stroke-width: 40px;
}

.faq-item.is-active .faq-icon {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.faq-answer p {
    max-width: 870px;
    padding: 0px 92px 25px 25px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.faq-item.is-active .faq-answer {
    max-height: 180px;
}

.faq-extra {
    display: none;
}

.faq-section.is-more-open .faq-extra {
    display: block;
    animation: faqExtraFade 0.45s ease both;
}

@keyframes faqExtraFade {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.faq-action {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-more-btn {
    min-width: 198px;
    height: 58px;
    padding: 0px 22px;
    border-radius: 999px;
    background: var(--dark);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.34px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.faq-more-btn ion-icon {
    font-size: 21px;
    --ionicon-stroke-width: 38px;
}

.faq-more-btn:hover {
    transform: translateY(-3px);
    background: var(--green);
    box-shadow: rgba(36, 125, 109, 0.2) 0px 18px 40px;
}

@media (max-width: 1120px) {
    .faq-section {
        padding: 84px 0px 48px;
    }

    .faq-list {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .faq-section {
        padding: 64px 0px 42px;
    }

    .faq-header .section-badge {
        margin-bottom: 24px;
    }

    .faq-heading {
        font-size: clamp(32px, 8.8vw, 42px);
        line-height: 1.14;
        letter-spacing: -1.15px;
    }

    .faq-copy {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.62;
    }

    .faq-list {
        margin-top: 38px;
        gap: 16px;
    }

    .faq-question {
        min-height: 76px;
        padding: 0px 16px 0px 18px;
        gap: 16px;
    }

    .faq-question span:first-child {
        font-size: 17px;
        letter-spacing: -0.35px;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
    }

    .faq-answer p {
        padding: 0px 18px 22px 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .faq-action {
        margin-top: 36px;
    }

    .faq-more-btn {
        min-width: 184px;
        height: 54px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 56px 0px 38px;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-question {
        min-height: 72px;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
    }

    .faq-icon ion-icon {
        font-size: 19px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* ==================== FAQ Section End ==================== */






/* ==================== Latest Article Section End ==================== */





/* ==================== CTA Section Start ==================== */

.cta-section {
    position: relative;
    min-height: 390px;
    padding: 88px 0px 80px;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.cta-bg {
    position: absolute;
    inset: 0px;
    z-index: -2;
    background-image:  url("../images/cta-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 760px;
    margin: 0px auto;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(42px, 4.1vw, 56px);
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -1.6px;
}

.cta-content p {
    max-width: 730px;
    margin: 24px auto 0px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.cta-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.cta-primary-btn,
.cta-secondary-btn {
    height: 58px;
    min-width: 136px;
    padding: 0px 25px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16.5px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.cta-primary-btn {
    background: var(--lime);
    color: var(--dark);
    box-shadow: rgba(168, 250, 142, 0.22) 0px 18px 40px;
}

.cta-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.cta-primary-btn:hover,
.cta-secondary-btn:hover {
    transform: translateY(-3px);
}

.cta-primary-btn:hover {
    box-shadow: rgba(168, 250, 142, 0.35) 0px 22px 50px;
}

.cta-secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.26);
    box-shadow: rgba(0, 0, 0, 0.22) 0px 18px 42px;
}

@keyframes ctaBgFloat {
    0% {
        transform: scale(1.02) translateY(0px);
    }

    100% {
        transform: scale(1.06) translateY(-8px);
    }
}

@media (max-width: 1120px) {
    .cta-section {
        min-height: 360px;
        padding: 78px 0px 74px;
    }

    .cta-content {
        max-width: 720px;
    }
}

@media (max-width: 720px) {
    .cta-section {
        min-height: auto;
        padding: 66px 0px 64px;
    }

    .cta-content h2 {
        font-size: clamp(32px, 8.8vw, 42px);
        line-height: 1.14;
        letter-spacing: -1.15px;
    }

    .cta-content p {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.62;
    }

    .cta-actions {
        margin-top: 28px;
        flex-direction: column;
        gap: 12px;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 260px;
        height: 54px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 58px 0px 58px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 15.5px;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        max-width: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-bg {
        animation: none !important;
        transform: scale(1.02);
    }
}

/* ==================== CTA Section End ==================== */





/* ==================== Footer Section Start ==================== */

.site-footer {
    padding: 94px 0px 52px;
    background: var(--page-bg);
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(520px, 660px) 1fr;
    align-items: start;
    gap: 105px;
}

.footer-newsletter h2 {
    color: var(--dark);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.42px;
}

.footer-newsletter p {
    max-width: 560px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.48;
    font-weight: 500;
    letter-spacing: -0.34px;
}

.footer-form {
    margin-top: 25px;
}

.footer-input-wrap {
    max-width: 514px;
    display: grid;
    grid-template-columns: 1fr 125px;
    align-items: center;
    gap: 12px;
}

.footer-input-wrap input {
    width: 100%;
    height: 56px;
    padding: 0px 24px;
    border: 1px solid rgba(23, 37, 29, 0.08);
    border-radius: 999px;
    background: var(--white);
    color: var(--dark);
    font-family: inherit;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.28px;
    outline: none;
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.footer-input-wrap input::placeholder {
    color: rgba(116, 120, 117, 0.45);
}

.footer-input-wrap input:focus {
    border-color: rgba(36, 125, 109, 0.34);
    box-shadow: rgba(36, 125, 109, 0.1) 0px 0px 0px 5px;
}

.footer-input-wrap button {
    height: 56px;
    padding: 0px 24px;
    border-radius: 999px;
    background: var(--dark);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.28px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.footer-input-wrap button:hover {
    transform: translateY(-2px);
    background: var(--green);
    box-shadow: rgba(36, 125, 109, 0.18) 0px 16px 34px;
}

.footer-form-message {
    min-height: 20px;
    margin-top: 12px;
    color: var(--green);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.footer-form-message.is-error {
    color: #c24b3a;
}

.footer-brand {
    width: fit-content;
    margin-top: 169px;
    display: inline-flex;
    align-items: center;
    gap: 26px;
    color: var(--dark);
    transition: transform 0.3s ease;
}

.footer-brand:hover {
    transform: translateY(-3px);
}

.footer-brand img {
    width: 78px;
    height: auto;
    flex-shrink: 0;
}

.footer-brand span {
    color: var(--dark);
    font-size: clamp(58px, 5vw, 77px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3.2px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 52px 76px;
}

.footer-column h3 {
    color: var(--dark);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.36px;
}

.footer-column ul {
    margin-top: 27px;
    list-style: none;
    display: grid;
    gap: 20px;
}

.footer-column a,
.footer-address address {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.28px;
    font-style: normal;
}

.footer-column a {
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--green);
    transform: translateX(3px);
}

.footer-address address {
    max-width: 270px;
    margin-top: 28px;
}

.footer-bottom {
    margin-top: 46px;
    padding-top: 50px;
    border-top: 1px solid rgba(23, 37, 29, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.28px;
}

@media (max-width: 1400px) {
    .footer-main {
        grid-template-columns: minmax(500px, 620px) 1fr;
        gap: 82px;
    }

    .footer-links {
        gap: 52px 62px;
    }
}

@media (max-width: 1120px) {
    .site-footer {
        padding: 82px 0px 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .footer-brand {
        margin-top: 76px;
    }

    .footer-links {
        max-width: 760px;
        grid-template-columns: repeat(4, minmax(0px, 1fr));
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .footer-links {
        grid-template-columns: repeat(2, minmax(0px, 1fr));
        gap: 42px 54px;
    }

    .footer-brand span {
        font-size: clamp(46px, 8vw, 64px);
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding: 64px 0px 42px;
    }

    .footer-newsletter h2 {
        font-size: 19px;
    }

    .footer-newsletter p {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.62;
    }

    .footer-input-wrap {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-input-wrap input,
    .footer-input-wrap button {
        height: 54px;
    }

    .footer-brand {
        margin-top: 58px;
        gap: 18px;
    }

    .footer-brand img {
        width: 58px;
    }

    .footer-brand span {
        font-size: clamp(40px, 11vw, 58px);
        letter-spacing: -2.4px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 38px 34px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul {
        margin-top: 22px;
        gap: 16px;
    }

    .footer-column a,
    .footer-address address {
        font-size: 15.5px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 34px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 56px 0px 36px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand img {
        width: 50px;
    }

    .footer-brand span {
        font-size: 38px;
        letter-spacing: -1.9px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom p {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .footer-brand span {
        font-size: 34px;
    }

    .footer-brand img {
        width: 46px;
    }
}

/* ==================== Footer Section End ==================== */