/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --primary-color: #0b1c31; /* Deep navy blue */
    --secondary-color: #d1a55c; /* Muted gold */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #eaeaea;
    --font-family: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.bg-light { background-color: var(--bg-light); }
.mt-4 { margin-top: 2rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    gap: 10px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 34, 57, 0.2);
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: rgba(11, 34, 57, 0.05);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: min(calc(100% - 104px), 1540px);
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(32px, 4.4vw, 72px);
    height: 68px;
}

.site-branding {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    min-width: 218px;
}

.site-title {
    margin: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    line-height: 1;
}

.brand-mark i {
    font-size: 34px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 23px;
    font-weight: 800;
    line-height: 0.95;
}

.brand-tagline {
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 3px;
}

.custom-logo,
.logo-img {
    max-height: 44px;
    width: auto;
}

.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    height: 100%;
    min-width: 0;
}

.primary-menu-container {
    height: 100%;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.7vw, 44px);
    margin: 0;
    padding: 0;
    height: 100%;
    flex-wrap: nowrap;
}

.main-navigation li {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 0 0 auto;
}

.main-navigation a {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    position: relative;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--secondary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed) ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

.header-contact {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.header-contact .btn {
    min-width: 174px;
    height: 44px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    gap: 10px;
}

.header-contact .btn i {
    font-size: 13px;
}

.menu-chevron {
    font-size: 10px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    min-height: clamp(374px, 38.8vw, 520px);
    padding: 0;
    overflow: hidden;
    isolation: isolate;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 64%;
    height: 100%;
    z-index: 1;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 100%;
    background-color: var(--white);
    border-radius: 0;
    clip-path: ellipse(77% 90% at 0 50%);
    z-index: 2;
    box-shadow: 18px 0 42px rgba(11, 28, 49, 0.04);
}

.hero-content {
    flex: none;
    width: min(52%, 720px);
    padding: clamp(44px, 4.6vw, 72px) 32px clamp(30px, 3.4vw, 52px) max(62px, calc((100% - 1540px) / 2 + 28px));
    z-index: 3;
    position: relative;
}

.hero-subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}

.hero-title {
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.12;
    letter-spacing: 0;
    max-width: 590px;
}

.hero-desc {
    color: var(--text-light);
    font-size: clamp(12px, 0.92vw, 15px);
    margin-bottom: 24px;
    max-width: 470px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(24px, 3vw, 38px);
}

.hero-actions .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 0 22px;
}
.hero-actions .btn-outline:hover {
    border-color: var(--primary-color);
}
.hero-actions .btn {
    min-height: 32px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    gap: 8px;
}
.hero-actions .btn-primary {
    padding: 0 20px;
}

.hero-features {
    display: flex;
    gap: clamp(24px, 4vw, 60px);
    max-width: 540px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-width: 76px;
}

.feature-item i {
    font-size: 28px;
    color: var(--secondary-color);
    transition: transform var(--transition-speed) ease;
}

.feature-item:hover i {
    transform: translateY(-5px);
}

.feature-item span {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-color);
    margin-top: 0;
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
section {
    padding: 80px 15px;
}

.section-heading {
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
}

/* ==========================================================================
   Product Categories
   ========================================================================== */
.product-categories-section {
    max-width: var(--container-width);
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform var(--transition-speed) ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    height: 300px;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.05);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(11, 34, 57, 0.9), rgba(11, 34, 57, 0.7), transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.category-info i {
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.category-info h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.view-more {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
}

.view-more:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
}

.benefit-item i {
    font-size: 32px;
    color: var(--secondary-color);
}

.benefit-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-list {
    margin-bottom: 40px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.stats-box {
    position: absolute;
    bottom: -30px;
    left: -50px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.stat-item i {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   Working Process
   ========================================================================== */
.process-section {
    background-color: var(--bg-light);
}

.process-section .section-heading {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-image: linear-gradient(to right, var(--border-color) 50%, transparent 50%);
    background-size: 10px 100%;
    z-index: 1;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 2px solid var(--white);
    transition: all var(--transition-speed) ease;
}

.step-item:hover .step-icon {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.step-number {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================================================
   Projects Section
   ========================================================================== */
.projects-section {
    max-width: var(--container-width);
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 34, 57, 0.5);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.project-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section .section-heading {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: rgba(247, 169, 40, 0.2);
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    min-height: 70px;
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 14px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
}

.customer-info span {
    font-size: 13px;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

/* ==========================================================================
   Partners
   ========================================================================== */
.partners-section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 0;
}

.partners-carousel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.partner-item {
    opacity: 0.6;
    transition: opacity var(--transition-speed) ease, filter var(--transition-speed) ease;
    filter: grayscale(100%);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-item img {
    height: 40px;
    width: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-img-footer {
    height: 40px;
    width: auto;
}

.brand-info p {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul a {
    color: #a0aec0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul a:hover {
    color: var(--secondary-color);
}

.contact-info ul li {
    display: flex;
    gap: 15px;
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.newsletter p {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-form button {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.site-info-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 13px;
}

.footer-bottom-links a {
    color: #a0aec0;
    margin: 0 10px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.back-to-top {
    position: absolute;
    right: 30px;
    top: -25px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(247, 169, 40, 0.3);
    transition: transform var(--transition-speed) ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .header-container {
        width: min(calc(100% - 96px), 1540px);
        gap: 32px;
    }
    .site-branding {
        min-width: 178px;
    }
    .brand-name {
        font-size: 20px;
    }
    .main-navigation ul {
        gap: 20px;
    }
    .main-navigation a {
        font-size: 11px;
    }
    .header-contact .btn {
        min-width: 132px;
        height: 40px;
        padding: 0 16px;
        font-size: 12px;
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .header-contact {
        display: none;
    }
    .main-navigation {
        justify-content: flex-end;
    }
    .hero-section {
        min-height: auto;
    }
    .hero-section::before {
        width: 100%;
        border-radius: 0;
        opacity: 0.94;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 64px 24px 52px;
    }
    .hero-image {
        display: block;
        width: 100%;
        opacity: 0.2;
    }
    .hero-image img {
        object-position: center right;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .benefits-row {
        flex-wrap: wrap;
    }
    .benefit-item {
        flex: 1 1 45%;
    }
    .about-section {
        flex-direction: column;
    }
    .stats-box {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    .process-steps::before {
        display: none;
    }
    .step-item {
        flex: 1 1 30%;
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        width: calc(100% - 32px);
        height: 68px;
        gap: 16px;
    }
    .site-branding {
        min-width: auto;
    }
    .brand-mark i {
        font-size: 30px;
    }
    .brand-name {
        font-size: 19px;
    }
    .brand-tagline {
        font-size: 9px;
    }
    .main-navigation {
        flex: 0 0 auto;
        height: auto;
        margin-left: auto;
    }
    .menu-toggle {
        display: block;
    }
    .main-navigation ul {
        display: none; /* Mobile menu hidden by default */
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 0;
        height: auto;
    }
    .main-navigation.toggled ul {
        display: flex;
    }
    .main-navigation li {
        height: auto;
        width: 100%;
    }
    .main-navigation a {
        height: auto;
        width: 100%;
        padding: 13px 0;
    }
    .main-navigation a::after {
        display: none;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        margin-bottom: 34px;
    }
    .hero-features {
        flex-wrap: wrap;
        gap: 24px;
    }
    .feature-item {
        flex: 1 1 calc(50% - 24px);
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .site-info-container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 48px 20px 42px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .benefits-row {
        flex-direction: column;
    }
    .step-item {
        flex: 1 1 100%;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    .stats-box {
        grid-template-columns: 1fr;
    }
}
