/* =========================================
   VARIABLES / RESET
========================================= */
:root {
    --primary: #f4a51c;
    --primary-dark: #d88600;
    --dark: #121820;
    --dark-2: #1c252f;
    --text: #303841;
    --muted: #71808f;
    --light: #f5f7f9;
    --white: #ffffff;
    --border: #e6ebf0;
    --shadow: 0 15px 45px rgba(20, 31, 42, 0.09);
    --radius: 14px;
    --container: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.9;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

button {
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* =========================================
   COMMON COMPONENTS
========================================= */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    background: #fff6e5;
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.light-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffe1a3;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.section-heading h2,
.about-content h2,
.why-us-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.55;
    color: var(--dark);
    font-weight: 900;
}

.section-heading p {
    color: var(--muted);
    margin-top: 7px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px 22px;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    color: var(--dark);
    background: var(--primary);
}

.btn-primary:hover {
    background: #ffb72f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 165, 28, 0.25);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
    color: var(--dark);
    border-color: var(--white);
    background: var(--white);
}

.btn-dark {
    color: var(--white);
    background: var(--dark);
}

.btn-dark:hover {
    background: var(--primary-dark);
}

.text-link,
.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.25s;
}

.text-link:hover,
.article-link:hover {
    gap: 13px;
    color: var(--dark);
}

/* =========================================
   HEADER
========================================= */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.3s ease;
}

.site-header.scrolled {
    color: var(--text);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.header-container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: var(--dark);
    background: var(--primary);
    font-size: 1.3rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.logo-text strong {
    font-size: 1.22rem;
    font-weight: 900;
}

.logo-text small {
    font-size: 0.62rem;
    opacity: 0.78;
}

/* لوگوی سفارشی آپلودشده (جایگزین آیکون+متن پیش‌فرض) */
.logo-img {
    display: block;
    max-width: 170px;
    max-height: 55px;
    object-fit: contain;
}

.logo-img-dark {
    display: none;
}

.site-header.scrolled .logo-img-light {
    display: none;
}

.site-header.scrolled .logo-img-dark {
    display: block;
}

.footer-logo .logo-img {
    max-height: 46px;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.25s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: var(--primary);
}

.main-nav .fa-chevron-down {
    font-size: 0.65rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    direction: ltr;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
}

.header-phone i {
    color: var(--primary);
    font-size: 1rem;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 28px);
    right: -180px;
    width: 730px;
    padding: 20px;
    color: var(--text);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.has-submenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 800;
}

.mega-menu-title a {
    color: var(--primary-dark);
    font-size: 0.78rem;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.mega-menu-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mega-menu-grid a:hover {
    background: var(--light);
}

.mega-menu-grid i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--primary-dark);
    background: #fff5e2;
    border-radius: 7px;
}

.mega-menu-grid span {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.mega-menu-grid strong {
    font-size: 0.8rem;
}

.mega-menu-grid small {
    color: var(--muted);
    font-size: 0.68rem;
}

.menu-toggle {
    display: none;
    width: 35px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
    transition: 0.25s;
}

/* =========================================
   HERO
========================================= */
.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-image: url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1920&q=90");
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 18, 26, 0.96) 0%, rgba(11, 18, 26, 0.83) 46%, rgba(11, 18, 26, 0.33) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    align-items: center;
    gap: 70px;
    padding-top: 90px;
}

.hero-text h1 {
    max-width: 700px;
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 5vw, 4.45rem);
    line-height: 1.35;
    font-weight: 900;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text > p {
    max-width: 590px;
    color: #d0d7df;
    font-size: 1rem;
    line-height: 2.1;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 33px;
    color: #dbe1e6;
    font-size: 0.78rem;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-features i {
    color: var(--primary);
}

.hero-card {
    padding: 20px;
    background: rgba(10, 19, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-card-top i {
    color: var(--primary);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.hero-stat:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 900;
}

.hero-stat span {
    color: #c9d1d8;
    font-size: 0.7rem;
}

.scroll-down {
    position: absolute;
    z-index: 2;
    bottom: 26px;
    right: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translateX(50%);
    color: #e2e7ea;
    font-size: 0.68rem;
}

.scroll-down i {
    color: var(--primary);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    50% {
        transform: translateY(7px);
    }
}

/* =========================================
   ABOUT
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(45px, 8vw, 115px);
}

.about-images {
    position: relative;
    padding: 0 0 30px 30px;
}

.about-main-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 480px;
    border-radius: 10px;
}

.about-main-image img {
    height: 100%;
}

.about-pattern {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 58%;
    height: 55%;
    border: 5px solid var(--primary);
}

.experience-box {
    position: absolute;
    z-index: 3;
    left: -10px;
    top: 55px;
    padding: 18px;
    color: var(--white);
    background: var(--dark);
    border-right: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.experience-box strong {
    display: block;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 900;
}

.experience-box span {
    display: block;
    font-size: 0.72rem;
    line-height: 1.8;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-dark);
}

.about-content > p {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.check-list {
    display: grid;
    gap: 9px;
    margin: 25px 0;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    flex: 0 0 20px;
    color: var(--primary-dark);
    background: #fff1d5;
    border-radius: 50%;
    font-size: 0.65rem;
}

/* =========================================
   PRODUCTS
========================================= */
.products-section {
    background: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 290px;
}

/* .product-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(16, 23, 31, 0.62), transparent 65%);
} */

.product-image img {
    height: 100%;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-number {
    position: absolute;
    z-index: 1;
    left: 17px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.45rem;
    font-weight: 900;
}

.product-content {
    position: relative;
    padding: 23px 20px 20px;
}

.product-icon {
    position: absolute;
    left: 18px;
    top: -23px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--dark);
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 8px;
}

.product-content h3 {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 1.05rem;
}

.product-content p {
    min-height: 52px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.9;
}

.product-content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
}

.all-products-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    color: var(--white);
    background: var(--dark);
    border-radius: var(--radius);
    transition: 0.3s;
}

.all-products-card:hover {
    background: var(--primary-dark);
    transform: translateY(-7px);
}

.all-products-card i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 23px;
    color: var(--dark);
    background: var(--primary);
    border-radius: 50%;
    font-size: 1.1rem;
}

.all-products-card strong {
    font-size: 1.25rem;
    line-height: 1.7;
}

.all-products-card span {
    margin-top: 7px;
    color: #b8c2cc;
    font-size: 0.78rem;
}

/* =========================================
   WHY US
========================================= */
.why-us {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
}

.why-us::after {
    position: absolute;
    top: -210px;
    left: -150px;
    width: 500px;
    height: 500px;
    content: "";
    border: 70px solid rgba(244, 165, 28, 0.05);
    border-radius: 50%;
}

.why-us-intro {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.why-us-intro h2 {
    color: var(--white);
}

.why-us-intro p {
    margin-top: 10px;
    color: #aab6c0;
    font-size: 0.9rem;
}

.why-us-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    position: relative;
    padding: 28px 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 165, 28, 0.65);
    background: rgba(255, 255, 255, 0.08);
}

.why-card > span {
    position: absolute;
    top: 13px;
    left: 15px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 900;
}

.why-card > i {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    margin-bottom: 18px;
    color: var(--primary);
    background: rgba(244, 165, 28, 0.13);
    border-radius: 7px;
}

.why-card h3 {
    font-size: 0.97rem;
}

.why-card p {
    margin-top: 7px;
    color: #aeb9c2;
    font-size: 0.75rem;
    line-height: 1.95;
}

/* =========================================
   ARTICLES
========================================= */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: 0.3s;
}

.article-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.article-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    height: 100%;
    transition: 0.45s;
}

.article-card:hover .article-image img {
    transform: scale(1.07);
}

.article-image span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 4px 11px;
    color: var(--dark);
    background: var(--primary);
    border-radius: 4px;
    font-size: 0.69rem;
    font-weight: 700;
}

.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #8b98a4;
    font-size: 0.67rem;
}

.article-meta i {
    color: var(--primary-dark);
}

.article-content h3 {
    margin: 12px 0 9px;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.9;
}

.article-content h3 a:hover {
    color: var(--primary-dark);
}

.article-content p {
    color: var(--muted);
    font-size: 0.77rem;
    line-height: 1.95;
}

.article-link {
    margin-top: 15px;
    font-size: 0.77rem;
}

/* =========================================
   CTA
========================================= */
.cta-section {
    padding: 45px 0;
    color: var(--white);
    background: var(--primary-dark);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.cta-container > div > span {
    color: #ffe2aa;
    font-size: 0.82rem;
}

.cta-container h2 {
    margin-top: 3px;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
}

.cta-container .btn-primary {
    flex-shrink: 0;
    background: var(--dark);
    color: var(--white);
}

.cta-container .btn-primary:hover {
    background: #0a0e12;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    padding-top: 75px;
    color: #bdc7cf;
    background: #10161d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 50px;
}

.footer-logo {
    color: var(--white);
}

.footer-about p {
    max-width: 300px;
    margin-top: 18px;
    font-size: 0.78rem;
    line-height: 2.1;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.social-links a {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
    border-radius: 5px;
    font-size: 0.85rem;
    transition: 0.25s;
}

.social-links a:hover {
    color: var(--dark);
    background: var(--primary);
}

.footer-grid h3 {
    position: relative;
    margin-bottom: 19px;
    padding-bottom: 10px;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-grid h3::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    content: "";
    background: var(--primary);
}

.footer-links ul {
    display: grid;
    gap: 8px;
}

.footer-links a {
    font-size: 0.77rem;
    transition: 0.2s;
}

.footer-links a:hover {
    padding-right: 5px;
    color: var(--primary);
}

.footer-contact ul {
    display: grid;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.76rem;
    line-height: 1.9;
}

.footer-contact i {
    margin-top: 6px;
    color: var(--primary);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #86939e;
    font-size: 0.7rem;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    z-index: 99;
    left: 23px;
    bottom: 23px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--dark);
    background: var(--primary);
    border-radius: 7px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--white);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1050px) {
    .main-nav > ul {
        gap: 17px;
    }

    .header-phone span {
        display: none;
    }

    .product-grid,
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .section-padding {
        padding: 75px 0;
    }

    .site-header {
        color: var(--text);
        background: var(--white);
        box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
        border-color: transparent;
    }

    .logo-img-light {
        display: none;
    }

    .logo-img-dark {
        display: block;
    }

    .header-container {
        min-height: 70px;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        padding: 10px 20px 22px;
        background: var(--white);
        box-shadow: 0 15px 20px rgba(0, 0, 0, 0.06);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav > ul > li {
        border-bottom: 1px solid var(--border);
    }

    .main-nav > ul > li > a {
        justify-content: space-between;
        padding: 12px 0;
    }

    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 0 0 10px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-submenu:hover .mega-menu {
        display: none;
    }

    .has-submenu.mobile-open .mega-menu {
        display: block;
    }

    .mega-menu-title {
        display: none;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    .mega-menu-grid a {
        padding: 8px 5px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: 700px;
        background-position: 60% center;
    }

    .hero-overlay {
        background: rgba(11, 18, 26, 0.84);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-card {
        max-width: 480px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 570px;
        margin: 0 auto;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .cta-container {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .logo-icon {
        width: 37px;
        height: 37px;
        font-size: 1.05rem;
    }

    .logo-text strong {
        font-size: 1.08rem;
    }

    .header-phone {
        display: none;
    }

    .hero {
        min-height: 680px;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-features {
        gap: 10px 15px;
    }

    .hero-card {
        padding: 13px;
    }

    .hero-stat {
        padding: 13px 9px;
    }

    .about-main-image {
        height: 350px;
    }

    .experience-box {
        left: -3px;
        top: 30px;
    }

    .product-grid,
    .article-grid,
    .why-us-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-content p {
        min-height: auto;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom div {
        gap: 10px;
    }
}
