@font-face {
    font-family: "ParsiYekan";
    src: url("../fonts/Yekan Bakh FaNum 06 Bold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Nastaliq";
    src: url("../fonts/IranNastaliq.woff") format("woff");
    font-display: swap;
}
:root {
    --primary: #0090ce;
    --primary-dark: #006b9b;
    --cyan: #00d9ff;
    --cyan-light: #20dfd9;
    --dark: #101820;
    --dark-2: #172631;
    --text: #27343d;
    --muted: #687780;
    --white: #ffffff;
    --light: #f4f8fa;
    --border: #e2ebef;
    --gold: #f5b942;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 20px 60px rgba(0, 61, 91, 0.10);
    --container: 1200px;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body{
    font-family: "ParsiYekan", sans-serif;
    direction: rtl;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}
body.menu-open{
    overflow: hidden;
}
img{
    display: block;
    max-width: 100%;
}
a{
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea{
    font-family: inherit;
}
.container{
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}
.site-header{
    position: sticky;
    top: 0;
    width: 100%;
    height: 92px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 144, 206, 0.12);
    box-shadow: 0 8px 35px rgba(0, 60, 90, 0.06);
    z-index: 1000;
}
.header-inner{
    width: min(100% - 40px, 1400px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}
.brand{
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.brand-logo{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 144, 206, 0.08);
}
.brand-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-name{
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-persian{
    font-family: "Nastaliq", serif;
    font-size: 30px;
    color: var(--primary);
    white-space: nowrap;
}
.brand-english{
    direction: ltr;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1.5px;
    margin-top: 5px;
}
.main-nav{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2.5vw, 38px);
}
.nav-link{
    position: relative;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 3px;
    transition: 0.3s ease;
}
.nav-link::after{
    content: "";
    position: absolute;
    bottom: 1px;
    right: 0;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--cyan)
    );
    transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active{
    color: var(--primary);
}
.nav-link:hover::after,
.nav-link.active::after{
    width: 100%;
}
.header-cta{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    color: white;
    background: var(--primary);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(0, 144, 206, 0.25);
    transition: 0.3s ease;
}
.header-cta:hover{
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 144, 206, 0.35);
}
.cta-arrow{
    font-size: 18px;
}
.hamburger{
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 12px;
    background: var(--light);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.hamburger span{
    width: 24px;
    height: 2px;
    border-radius: 10px;
    background: var(--dark);
    transition: 0.3s ease;
}
.hamburger.active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2){
    opacity: 0;
}
.hamburger.active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}
.hero{
    position: relative;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-background{
    position: absolute;
    inset: 0;
}
.hero-background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    filter: blur(4px);
}
.hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 20, 29, 0.82),
            rgba(4, 20, 29, 0.48),
            rgba(4, 20, 29, 0.72)
        );
}
.hero-content{
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    padding: 90px 0;
    color: white;
}
.hero-badge{
    display: inline-flex;
    padding: 8px 16px;
    margin-bottom: 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(8px);
    color: var(--cyan);
    font-size: 15px;
}
.hero h1{
    max-width: 800px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.2;
    margin-bottom: 25px;
}
.hero h1 span{
    display: block;
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.22);
}
.hero p{
    max-width: 650px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 2;
    margin-bottom: 35px;
}
.hero-actions{
    display: flex;
    align-items: center;
    gap: 14px;
}
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn-primary{
    color: white;
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 144, 206, 0.3);
}
.btn-primary:hover{
    background: var(--primary-dark);
    transform: translateY(-3px);
}
.btn-outline{
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.btn-outline:hover{
    background: white;
    color: var(--dark);
}
.hero-scroll{
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}
.scroll-line{
    width: 1px;
    height: 35px;
    background: var(--cyan);
}
.stats-section{
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item{
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child{
    border-left: 0;
}
.stat-item strong{
    color: var(--cyan);
    font-size: 32px;
}
.stat-item span{
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-top: 5px;
}
.section{
    padding: 110px 0;
}
.section-heading{
    max-width: 700px;
    margin-bottom: 55px;
}
.section-heading.center{
    text-align: center;
    margin-inline: auto;
}
.section-label{
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}
.section-heading h2,
.about-content h2,
.faq-intro h2{
    color: var(--dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.4;
}
.section-heading h2 span,
.about-content h2 span,
.faq-intro h2 span{
    color: var(--primary);
}
.section-heading p{
    color: var(--muted);
    line-height: 2;
    margin-top: 15px;
}
.products-section{
    background: var(--light);
}
.products-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.product-card{
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.35s ease;
}
.product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 80, 120, 0.15);
}
.product-image{
    position: relative;
    height: 460px;
    overflow: hidden;
}
.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.product-card:hover .product-image img{
    transform: scale(1.07);
}
.product-tag{
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 50px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}
.product-content{
    padding: 25px;
}
.product-content h3{
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 10px;
}
.product-content p{
    min-height: 60px;
    color: var(--muted);
    line-height: 1.9;
    font-size: 14px;
    margin-bottom: 20px;
}
.product-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
    transition: 0.3s ease;
}
.product-link:hover{
    gap: 14px;
}
.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image{
    position: relative;
    padding: 15px;
}
.about-image::before{
    content: "";
    position: absolute;
    inset: 0 35px 35px 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--cyan);
    z-index: -1;
}
.about-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.about-slider{
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #071b25;
    box-shadow: 0 25px 70px rgba(0, 70, 100, 0.18);
}
.about-slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px) scale(1.08);
    transition: opacity 0.9s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.9s ease;
}
.about-slide.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}
.about-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-slide::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.12)
        );
    pointer-events: none;
}
.about-slider-dots{
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.slider-dot{
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.slider-dot.active{
    width: 25px;
    border-radius: 20px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.7);
}
.slider-dot:hover{
    transform: scale(1.3);
    background: white;
}
.about-slider::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), inset 0 -100px 150px rgba(0,0,0,0.12);
}
.experience-box{
    position: absolute;
    left: -10px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-radius: 16px;
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 40px rgba(0,144,206,0.3);
    z-index: 20;
}
.experience-box strong{
    font-size: 34px;
}
.experience-box span{
    font-size: 13px;
    line-height: 1.6;
}
.about-content > p{
    color: var(--muted);
    line-height: 2;
    margin-top: 20px;
}
.about-features{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}
.feature{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 14px;
}
.feature-icon{
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,144,206,0.1);
    color: var(--primary);
    font-weight: 900;
}
.advantages-section{
    background: var(--light);
}
.advantages-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.advantage-card{
    position: relative;
    padding: 35px 28px;
    min-height: 260px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s ease;
}
.advantage-card:hover{
    transform: translateY(-5px);
    border-color: rgba(0,144,206,0.3);
}
.advantage-number{
    color: rgba(0,144,206,0.12);
    font-family: Arial, sans-serif;
    font-size: 55px;
    font-weight: 900;
    direction: ltr;
}
.advantage-card h3{
    color: var(--dark);
    font-size: 21px;
    margin: 15px 0 10px;
}
.advantage-card p{
    color: var(--muted);
    line-height: 1.9;
    font-size: 14px;
}
.projects-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.project-card{
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark);
}
.project-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.project-card:hover img{
    transform: scale(1.08);
}
.project-overlay{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 30px;
    color: white;
    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.85)
        );
}
.project-overlay span{
    color: var(--cyan);
    font-size: 13px;
}
.project-overlay h3{
    font-size: 22px;
    margin-top: 7px;
}
.faq-section{
    background: var(--light);
}
.faq-grid{
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.faq-intro p{
    color: var(--muted);
    line-height: 2;
    margin: 20px 0 25px;
}
.faq-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-list details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0 22px;
    transition: 0.3s ease;
}
.faq-list details[open]{
    border-color: rgba(0,144,206,0.3);
    box-shadow: 0 10px 30px rgba(0,80,120,0.06);
}
.faq-list summary{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    cursor: pointer;
    list-style: none;
    color: var(--dark);
    font-weight: 700;
}
.faq-list summary::-webkit-details-marker{
    display: none;
}
.faq-list summary span{
    color: var(--primary);
    font-size: 25px;
    transition: 0.3s ease;
}
.faq-list details[open] summary span{
    transform: rotate(45deg);
}
.faq-list details p{
    color: var(--muted);
    line-height: 1.9;
    font-size: 14px;
    padding-bottom: 20px;
}
.cta-section{
    padding: 80px 0;
}
.cta-box{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 55px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            120deg,
            var(--primary),
            #0075aa
        );
    color: white;
    box-shadow: 0 25px 60px rgba(0,144,206,0.22);
}
.cta-box::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    left: -100px;
    bottom: -170px;
    background: rgba(255,255,255,0.08);
}
.cta-box > div{
    position: relative;
    z-index: 1;
}
.cta-box span{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.cta-box h2{
    font-size: clamp(25px, 4vw, 40px);
    margin: 10px 0;
}
.cta-box p{
    color: rgba(255,255,255,0.75);
}
.cta-actions{
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.btn-white{
    background: white;
    color: var(--primary);
}
.btn-white:hover{
    transform: translateY(-3px);
}
.btn-dark{
    background: var(--dark);
    color: white;
}
.btn-dark:hover{
    background: #000;
    transform: translateY(-3px);
}
.site-footer{
    padding-top: 70px;
    background: var(--dark);
    color: white;
}
.footer-grid{
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}
.footer-brand p{
    max-width: 360px;
    color: rgba(255,255,255,0.55);
    line-height: 2;
    font-size: 14px;
    margin: 20px 0;
}
.footer-logo .brand-persian{
    color: white;
}
.footer-logo .brand-english{
    color: rgba(255,255,255,0.65);
}
.footer-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}
.footer-column h3{
    color: white;
    font-size: 17px;
    margin-bottom: 8px;
}
.footer-column a{
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    transition: 0.3s ease;
}
.footer-column a:hover{
    color: var(--cyan);
    transform: translateX(-4px);
}
.footer-contact > div{
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 8px;
}
.footer-contact span{
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.footer-contact p,
.footer-contact a{
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.8;
}
.social-links{
    display: flex;
    gap: 8px;
}
.social-links a{
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    font-family: Arial, sans-serif;
    font-size: 11px;
    transition: 0.3s ease;
}
.social-links a:hover{
    color: white;
    background: rgba(0,217,255,0.12);
    border-color: rgba(0,217,255,0.3);
}
.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 70px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    z-index: 998;
}
.menu-overlay.active{
    display: block;
}
@media (max-width: 1100px){
    .main-nav{
        gap: 16px;
    }
    .nav-link{
        font-size: 14px;
    }
    .header-cta{
        padding-inline: 14px;
    }
    .advantages-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 850px){
    .site-header{
        height: 75px;
    }
    .header-inner{
        width: min(100% - 25px, 1400px);
    }
    .brand-logo{
        width: 48px;
        height: 48px;
    }
    .brand-persian{
        font-size: 25px;
    }
    .brand-english{
        font-size: 10px;
    }
    .main-nav{
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 340px);
        height: 100dvh;
        padding: 100px 30px 30px;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        box-shadow: -20px 0 60px rgba(0,0,0,0.15);
        z-index: 999;
        transition: right 0.35s ease;
    }
    .main-nav.open{
        right: 0;
    }
    .nav-link{
        width: 100%;
        padding: 17px 5px;
        border-bottom: 1px solid var(--border);
        font-size: 18px;
    }
    .nav-link::after{
        display: none;
    }
    .nav-link:hover{
        padding-right: 12px;
    }
    .header-cta{
        display: none;
    }
    .hamburger{
        display: flex;
        margin-right: auto;
    }
    .hero{
        min-height: calc(100dvh - 75px);
    }
    .hero-content{
        padding: 70px 0;
    }
    .hero h1{
        font-size: clamp(38px, 11vw, 60px);
    }
    .hero p{
        font-size: 15px;
    }
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item{
        min-height: 105px;
    }
    .stat-item:nth-child(2){
        border-left: 0;
    }
    .products-grid,
    .projects-grid{
        grid-template-columns: 1fr;
    }
    .about-grid{
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .about-image img{
        height: 400px;
    }
    .about-slider{
        height: 400px;
    }
    .faq-grid{
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .cta-box{
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
    }
}
@media (max-width: 550px){
    .container{
        width: min(100% - 25px, var(--container));
    }
    .section{
        padding: 75px 0;
    }
    .hero-content{
        width: min(100% - 30px, 1200px);
    }
    .hero-badge{
        font-size: 12px;
    }
    .hero h1{
        font-size: 39px;
    }
    .hero p{
        font-size: 14px;
        line-height: 1.9;
    }
    .hero-actions{
        flex-direction: column;
        align-items: stretch;
    }
    .btn{
        width: 100%;
    }
    .hero-scroll{
        display: none;
    }
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item strong{
        font-size: 25px;
    }
    .stat-item span{
        font-size: 12px;
    }
    .section-heading{
        margin-bottom: 35px;
    }
    .about-image{
        padding: 8px;
    }
    .about-image img{
        height: 300px;
    }
    .about-slider{
        height: 300px;
        border-radius: 20px;
    }
    .about-slider-dots{
        bottom: 14px;
    }
    .slider-dot{
        width: 7px;
        height: 7px;
    }
    .slider-dot.active{
        width: 22px;
    }
    .experience-box{
        left: -3px;
        bottom: 20px;
        padding: 12px 15px;
    }
    .experience-box strong{
        font-size: 25px;
    }
    .about-features{
        grid-template-columns: 1fr;
    }
    .advantages-grid{
        grid-template-columns: 1fr;
    }
    .project-card{
        height: 300px;
    }
    .cta-actions{
        width: 100%;
        flex-direction: column;
    }
    .footer-grid{
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
        gap: 5px;
    }
}