/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #FFFFFF;
    padding-top: 100px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

.container-narrow {
    max-width: 1144px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text-section {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: Urbanist, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: #E2E8F0;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FFFFFF;
    color: #3B82F6;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-primary:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: Urbanist, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.why-choose-section .container-narrow {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-title {
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header .section-subtitle {
    font-size: 18px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.advantage-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: #3B82F6;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card-header {
    padding: 32px 32px 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.advantage-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.icon-background {
    position: absolute;
    top: 4px;
    left: 4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    border-radius: 16px;
    z-index: 1;
    opacity: 0.3;
}

.advantage-title {
    font-size: 22px;
    font-weight: 700;
    color: #1E293B;
    font-family: Urbanist, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.3;
    margin: 0;
}

.advantage-content {
    padding: 24px 32px 32px;
}

.advantage-description {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.advantage-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: #F1F5F9;
    border-color: #3B82F6;
    transform: translateX(4px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: #1E293B;
    font-size: 15px;
    line-height: 1.4;
}

.feature-description {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    font-weight: 400;
}

/* Equipment Service Section */
.equipment-service-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

.equipment-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.2'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.equipment-service-section .container-narrow {
    position: relative;
    z-index: 1;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.equipment-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border-color: #10B981;
}

.equipment-card:hover::before {
    transform: scaleX(1);
}

.equipment-card-header {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.equipment-icon-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.equipment-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.icon-background {
    position: absolute;
    top: 3px;
    left: 3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    border-radius: 14px;
    z-index: 1;
    opacity: 0.3;
}

.equipment-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    font-family: Urbanist, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.3;
    margin: 0;
}

.equipment-content {
    padding: 20px 28px 28px;
}

.equipment-description {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.equipment-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F8FAFC;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-feature:hover {
    background: #F0FDF4;
    border-color: #10B981;
    transform: translateX(4px);
}

.equipment-feature i {
    color: #10B981;
    font-size: 16px;
    flex-shrink: 0;
}

.equipment-feature span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
}

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

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-title {
    font-family: Urbanist, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    margin-bottom: 48px;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-primary-btn {
    background: #FFFFFF;
    color: #3B82F6;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary-btn:hover::before {
    left: 100%;
}

.cta-primary-btn:hover {
    background: #F8FAFC;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.cta-secondary-btn:hover::before {
    left: 100%;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-phone {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
}

.cta-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-phone i {
    font-size: 20px;
    color: #10B981;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee i {
    font-size: 20px;
    color: #10B981;
}

.cta-guarantee-text {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }

    .container,
    .container-narrow {
        padding: 0 40px;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text-section {
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-section {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 600px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

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

    .advantage-card-header {
        padding: 24px 24px 20px;
        gap: 16px;
    }

    .advantage-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .advantage-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .advantage-title {
        font-size: 20px;
    }

    .advantage-content {
        padding: 20px 24px 28px;
    }

    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }

    .equipment-card-header {
        padding: 24px 24px 16px;
        gap: 12px;
    }

    .equipment-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .equipment-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .equipment-title {
        font-size: 16px;
    }

    .equipment-content {
        padding: 16px 24px 24px;
    }

    /* CTA Section Responsive */
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    .cta-phone {
        font-size: 20px;
        padding: 14px 20px;
    }

    .cta-guarantee {
        padding: 14px 20px;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .container,
    .container-narrow {
        padding: 0 20px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        gap: 32px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-section {
        text-align: center;
        order: 1;
    }

    .hero-image-section {
        order: 2;
        justify-content: center;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header .section-subtitle {
        font-size: 16px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card-header {
        padding: 20px 20px 16px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .advantage-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .advantage-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .advantage-title {
        font-size: 18px;
    }

    .advantage-content {
        padding: 16px 20px 24px;
    }

    .advantage-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .feature-item {
        padding: 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-description {
        font-size: 13px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-card-header {
        padding: 20px 20px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .equipment-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .equipment-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .equipment-title {
        font-size: 15px;
    }

    .equipment-content {
        padding: 12px 20px 20px;
    }

    .equipment-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .equipment-feature {
        padding: 10px;
        gap: 10px;
    }

    .equipment-feature i {
        font-size: 14px;
    }

    .equipment-feature span {
        font-size: 13px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 32px;
        color: #FFFFFF;
        opacity: 0.95;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-phone {
        font-size: 18px;
        padding: 14px 20px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-guarantee {
        padding: 14px 20px;
        margin-top: 24px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }

    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-content {
        gap: 24px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-section {
        text-align: center;
        order: 1;
    }

    .hero-image-section {
        order: 2;
        justify-content: center;
    }

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

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header .section-subtitle {
        font-size: 15px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-content {
        padding: 0 16px;
    }

    .cta-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 32px;
        color: #FFFFFF;
        opacity: 0.95;
    }

    .cta-buttons {
        gap: 12px;
        align-items: center;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        padding: 14px 24px;
        font-size: 14px;
        gap: 8px;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .cta-phone {
        font-size: 18px;
        padding: 12px 16px;
        gap: 8px;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .cta-guarantee {
        padding: 12px 16px;
        margin-top: 20px;
        gap: 8px;
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .cta-guarantee-text {
        font-size: 13px;
    }

    .advantage-card-header {
        padding: 16px 16px 12px;
    }

    /* Ensure proper touch targets on mobile */
    .btn-primary,
    .btn-secondary,
    .cta-primary-btn,
    .cta-secondary-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve grid responsiveness */
    .advantages-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Better spacing for mobile */
    .advantage-content,
    .equipment-content {
        padding: 12px 16px 20px;
    }

    .feature-item,
    .equipment-feature {
        padding: 8px;
        gap: 8px;
    }

    .advantage-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .advantage-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .advantage-title {
        font-size: 16px;
    }

    .advantage-content {
        padding: 12px 16px 20px;
    }

    .advantage-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .feature-item {
        padding: 10px;
        gap: 10px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .feature-title {
        font-size: 13px;
    }

    .feature-description {
        font-size: 12px;
    }

    .equipment-card-header {
        padding: 16px 16px 10px;
    }

    .equipment-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .equipment-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .equipment-title {
        font-size: 14px;
    }

    .equipment-content {
        padding: 10px 16px 16px;
    }

    .equipment-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .equipment-feature {
        padding: 8px;
        gap: 8px;
    }

    .equipment-feature i {
        font-size: 12px;
    }

    .equipment-feature span {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .container,
    .container-narrow {
        padding: 0 12px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .cta-section {
        padding: 30px 0;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States */
.btn-primary:focus,
.btn-secondary:focus,
.phone-link:focus,
.cta-phone:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}
      /* Scoped Reset and Base Styles - Only for navbar wrapper */
      .chemitek-nav-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.chemitek-nav-wrapper {
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.5;
    color: #111827;
    width: 100%;
    position: relative;
    z-index: 1004;
}

/* Navigation Styles */
.chemitek-main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1004;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100px;
}

.chemitek-main-header.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    border-bottom-color: #E2E8F0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chemitek-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    max-width: 1320px;
    width: 100%;
}

.chemitek-company-logo {
    width: 180px; /* Increased from 140px */
    height: auto;
    aspect-ratio: 3.34;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none; /* Always normal color since background is always white */
}

.chemitek-company-logo:hover {
    transform: scale(1.02);
}

/* Logo stays normal color since header background is always white */
.chemitek-main-header.scrolled .chemitek-company-logo {
    filter: none;
}

.chemitek-nav-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chemitek-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 24px;
}

.chemitek-nav-button {
    background: none;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #111827; /* Always dark color since background is always white */
    cursor: pointer;
    min-height: 44px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
}

/* Nav buttons stay the same color since background doesn't change */
.chemitek-main-header.scrolled .chemitek-nav-button {
    color: #111827 !important;
}

.chemitek-nav-button:hover {
    background-color: #F8FAFC;
    color: #3B82F6 !important;
    transform: translateY(-1px);
}

/* Hover state remains consistent */
.chemitek-main-header.scrolled .chemitek-nav-button:hover {
    background-color: #F8FAFC;
    color: #3B82F6 !important;
}

.chemitek-nav-button.active {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3B82F6 !important;
}

/* Active state remains consistent */
.chemitek-main-header.scrolled .chemitek-nav-button.active {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3B82F6 !important;
}

.chemitek-dropdown-button {
    align-items: center;
    gap: 6px;
    position: relative;
}

.chemitek-dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.chemitek-dropdown-button:hover .chemitek-dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.chemitek-contact-cta-button {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    min-height: 52px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.chemitek-contact-cta-button:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    color: #FFFFFF !important;
}

/* Standard Dropdown Menu Styles */
.chemitek-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    margin-top: 8px;
}

.chemitek-dropdown-button:hover .chemitek-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.chemitek-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
}

.chemitek-dropdown-item:hover {
    background-color: #F8FAFC;
    color: #3B82F6;
    border-left-color: #3B82F6;
    transform: translateX(4px);
}

/* Hamburger Menu */
.chemitek-hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1005;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.chemitek-hamburger-menu:hover {
    background-color: #F8FAFC;
}

/* Hamburger hover remains consistent */
.chemitek-main-header.scrolled .chemitek-hamburger-menu:hover {
    background-color: #F8FAFC;
}

.chemitek-hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background-color: #111827; /* Always dark since background is always white */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

/* Hamburger lines stay dark since background doesn't change */
.chemitek-main-header.scrolled .chemitek-hamburger-line {
    background-color: #111827;
}

/* Mobile Menu */
.chemitek-mobile-menu {
    display: none;
    position: fixed;
    top: 80px; /* Reduced from 100px */
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 16px 20px; /* Reduced padding */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 4px; /* Reduced gap */
    z-index: 1003;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
    border-bottom: 1px solid #E2E8F0;
}

.chemitek-mobile-menu .chemitek-nav-button,
.chemitek-mobile-menu .chemitek-contact-cta-button {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px; /* Reduced padding */
    border-radius: 12px;
    font-size: 15px; /* Reduced font size */
    color: #374151 !important;
    min-height: 40px; /* Reduced min-height */
}

.chemitek-mobile-menu .chemitek-nav-button:hover {
    background-color: #F8FAFC;
    color: #3B82F6 !important;
}

.chemitek-mobile-menu .chemitek-contact-cta-button {
    justify-content: center;
    margin-top: 12px; /* Reduced margin */
    color: #FFFFFF !important;
    min-height: 44px; /* Slightly bigger for CTA */
}

.chemitek-mobile-menu .chemitek-contact-cta-button:hover {
    color: #FFFFFF !important;
}

/* Mobile Menu Active State */
.chemitek-mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chemitek-hamburger-menu.active {
    background-color: #F1F5F9;
}

/* Hamburger active state remains consistent */
.chemitek-main-header.scrolled .chemitek-hamburger-menu.active {
    background-color: #F1F5F9;
}

.chemitek-hamburger-menu.active .chemitek-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.chemitek-hamburger-menu.active .chemitek-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.chemitek-hamburger-menu.active .chemitek-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile dropdown styles */
.chemitek-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #F8FAFC;
    border-radius: 12px;
    margin-top: 6px; /* Reduced margin */
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.chemitek-mobile-dropdown.active {
    max-height: 800px;
}

.chemitek-mobile-dropdown .chemitek-dropdown-item {
    padding: 10px 20px; /* Reduced padding */
    font-size: 14px; /* Reduced font size */
    border-left: 3px solid transparent;
    color: #4B5563;
}

.chemitek-mobile-dropdown .chemitek-dropdown-item:hover {
    border-left-color: #3B82F6;
    background-color: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .chemitek-navigation {
        padding: 16px 20px; /* Reduced padding */
    }

    .chemitek-main-header {
        height: 80px; /* Reduced height */
    }

    .chemitek-company-logo {
        width: 160px; /* Slightly smaller on tablet */
    }

    .chemitek-nav-content {
        display: none;
    }

    .chemitek-hamburger-menu {
        display: flex;
    }

    .chemitek-mobile-menu {
        top: 80px; /* Match header height */
    }
}

@media (max-width: 768px) {
    .chemitek-navigation {
        padding: 12px 16px; /* Further reduced padding */
    }

    .chemitek-main-header {
        height: 70px; /* Further reduced height */
    }

    .chemitek-company-logo {
        width: 140px; /* Smaller on mobile but still bigger than original */
    }

    .chemitek-mobile-menu {
        top: 70px; /* Match header height */
        padding: 12px 16px; /* Reduced padding */
    }
}

@media (max-width: 480px) {
    .chemitek-navigation {
        padding: 8px 12px; /* Minimal padding */
    }

    .chemitek-main-header {
        height: 65px; /* Compact height */
    }

    .chemitek-company-logo {
        width: 130px; /* Compact but still bigger than original */
    }

    .chemitek-mobile-menu {
        top: 65px; /* Match header height */
        padding: 10px 12px; /* Compact padding */
    }
}

/* Animation for nav items */
@keyframes chemitek-slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chemitek-nav-button.animate {
    animation: chemitek-slideInDown 0.3s ease-out both;
}

/* Focus states for accessibility */
.chemitek-nav-button:focus,
.chemitek-contact-cta-button:focus,
.chemitek-hamburger-menu:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

.chemitek-dropdown-item:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
    border-radius: 8px;
}

/* Loading state */
.chemitek-main-header.loading {
    opacity: 0;
    transform: translateY(-100%);
}

.chemitek-main-header.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .chemitek-nav-wrapper * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.footer-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-wrapper {
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #0F172A;
    width: 100%;
}

/* Footer */
.main-footer {
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
}

.footer-content {
    background-color: #0F172A;
    padding: 80px 20px;
}

.footer-main {
    display: flex;
    align-items: start;
    gap: 80px;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1144px;
    margin: 0 auto;
}

.footer-links-section {
    display: flex;
    align-items: start;
    gap: 48px;
    flex-wrap: wrap;
    min-width: 240px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 6px;
    padding: 6px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.footer-link:hover {
    color: #3B82F6;
    transform: translateX(4px);
}

.footer-contact-section {
    min-width: 240px;
    width: 320px;
    font-size: 13px;
    letter-spacing: -0.01em;
    border-left: 1px solid #E2E8F0;
    gap: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    color: #9CA3AF;
    font-weight: 400;
    line-height: 1.5;
    padding: 8px 32px;
    gap: 24px;
}

.contact-details-section {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 12px;
    line-height: 20px;
    margin-top: 16px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    color: #3B82F6;
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    flex: 1;
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item:hover .contact-text {
    color: #3B82F6;
}

.footer-divider {
    border: 1px;
    min-height: 1px;
    margin-top: 24px;
    width: 100%;
    background-color: #E2E8F0;
}

.business-details {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    padding: 8px 32px;
    gap: 16px;
}

.business-details-content {
    width: 100%;
}

.business-details-text {
    color: #9CA3AF;
    font-weight: 400;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 12px;
}

.business-details-text strong {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-bottom {
    background-color: #0F172A;
    border-top: 1px solid #E2E8F0;
    padding: 24px 20px;
    font-size: 12px;
    color: #6B7280;
    font-weight: 400;
    line-height: 1.5;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1144px;
    margin: 0 auto;
}

.copyright-text {
    min-width: 240px;
    text-align: center;
    gap: 32px;
}

.footer-bottom-links {
    display: flex;
    align-items: start;
    gap: 40px;
    letter-spacing: -0.01em;
    min-width: 240px;
}

.footer-bottom-link {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
}

.footer-bottom-link:hover {
    color: #3B82F6;
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column.animate {
    animation: fadeInUp 0.5s ease-out both;
}

.footer-contact-section.animate {
    animation: fadeInUp 0.5s ease-out both;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        padding: 60px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 48px;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }

    .footer-contact-section {
        width: 100%;
        border-left: none;
        border-top: 1px solid #E2E8F0;
        padding-top: 24px;
    }

    .footer-contact {
        padding: 8px 0;
    }

    .business-details {
        padding: 8px 0;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 20px;
    }

    .footer-links-section {
        gap: 24px;
    }

    .footer-main {
        gap: 32px;
    }

    .contact-item {
        margin-top: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .copyright-text {
        font-size: 11px;
    }

    .footer-bottom-link {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 40px 20px;
    }

    .footer-links-section {
        gap: 20px;
    }

    .footer-column-title {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .footer-link {
        font-size: 13px;
    }

    .contact-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .business-details-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-bottom {
        padding: 16px 20px;
    }

    .footer-bottom-content {
        gap: 16px;
    }
}

/* Focus states for accessibility */
.footer-link:focus,
.footer-bottom-link:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
    border-radius: 6px;
}

/* Loading states */
.footer-column {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column.loaded {
    opacity: 1;
    transform: translateY(0);
}

.footer-contact-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-section.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet-specific improvements */
@media (min-width: 768px) and (max-width: 991px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }
}

/* Ensure proper viewport handling */
@media (max-width: 320px) {
    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .cta-title {
        font-size: 24px;
    }
}