/* Service Page Specific Styles */

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 80px;
}

.breadcrumb {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Content */
.service-content {
    padding: 80px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.main-content {
    background: white;
    padding: 0;
}

.main-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.problem-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Process Steps */
.repair-process {
    margin: 4rem 0;
}

.process-steps,
.steps {
    display: grid;
    gap: 2rem;
}

.process-steps .step,
.steps .step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
}

/* Components Section */
.components-section {
    margin: 4rem 0;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.component {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.component h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.component p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-content: start;
}

.price-card-detailed,
.guarantee-card,
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.price-card-detailed h3,
.guarantee-card h3,
.contact-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.price-list {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    color: #2563eb;
    font-weight: 600;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.guarantee-icon {
    color: #10b981;
    font-weight: bold;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .components-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps .step,
    .steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 40px;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}
/* Service Icon Large */
.service-icon-large {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Service Types */
.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.service-type h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-type p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Causes List */
.causes-list {
    list-style: none;
    margin: 2rem 0;
}

.causes-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    position: relative;
    padding-left: 2rem;
}

.causes-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.causes-list li:last-child {
    border-bottom: none;
}

/* Process Steps Enhanced */
.process-steps .step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Sidebar Cards */
.price-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.price-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.features-card,
.time-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.features-card h3,
.time-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.features-card ul {
    list-style: none;
}

.features-card li {
    padding: 0.5rem 0;
    color: #64748b;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.time-item:last-child {
    border-bottom: none;
}

.time-item span:first-child {
    color: #64748b;
}

.time-item span:last-child {
    color: #2563eb;
    font-weight: 600;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.equipment-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.equipment-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.equipment-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Symptoms List */
.symptoms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.symptom {
    background: #fef2f2;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    color: #7f1d1d;
}

/* Tools Section */
.tools-section {
    background: #f8fafc;
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 12px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tool-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tool-item p {
    color: #64748b;
    font-size: 0.8rem;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .service-types {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta h2 {
        font-size: 2rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
}
/* Brands Section */
.brands-section {
    margin: 4rem 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.brand-item h4 {
    color: #2563eb;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Enhanced Process Steps */
.process-steps .step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Enhanced Components Grid */
.components-grid .component {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.components-grid .component:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.component h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.component p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced Sidebar Cards */
.price-card-detailed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-card-detailed h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.price-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: none;
}

.price-item span:first-child {
    color: rgba(255,255,255,0.9);
}

.price-item .price {
    color: white;
    font-weight: 700;
}

.guarantee-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.guarantee-card h3 {
    color: #166534;
}

.guarantee-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #bbf7d0;
}

.guarantee-item:last-child {
    border-bottom: none;
}

.guarantee-item span:last-child {
    color: #166534;
}

.contact-card {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.contact-card h3 {
    color: #92400e;
}

.contact-info p {
    color: #92400e;
    font-weight: 500;
}

/* Service Description Enhanced */
.service-description p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: justify;
}

/* Problem Cards Enhanced */
.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.problem-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Enhanced */
.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .process-steps .step {
        padding: 1.5rem;
    }
    
    .problem-card,
    .faq-item {
        padding: 1.5rem;
    }
    
    .service-description p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-icon {
        font-size: 2rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Phone links styling for service pages */
.header-phone a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.header-phone a:hover {
    color: #1d4ed8;
}

.contact-info a[href^="tel:"],
.footer-section a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a[href^="tel:"]:hover {
    color: #2563eb;
}

.footer-section a[href^="tel:"]:hover {
    color: #2563eb;
}

/* New Service Page Elements */

/* Upgrade Section */
.upgrade-section {
    margin: 4rem 0;
}

.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.upgrade-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #2563eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.upgrade-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.upgrade-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.upgrade-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.upgrade-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.upgrade-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.upgrade-card li {
    color: #64748b;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.upgrade-price {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 8px;
}

/* Packages Section */
.packages-section,
.popular-section {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 12px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.package-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.package-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.package-card li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.package-card li:last-child {
    border-bottom: none;
}

.package-result {
    color: #10b981;
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Services Section Enhanced */
.services-section {
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    color: #64748b;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.service-price {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 8px;
}

/* Services List */
.services-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #2563eb;
}

.service-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-item p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-item .service-price {
    display: inline-block;
    margin-top: 1rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.main-content {
    background: white;
    padding: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-content: start;
}

/* Sidebar Cards Enhanced */
.advantages-card,
.related-services {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.advantages-card h3,
.related-services h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.advantages-card ul,
.related-services ul {
    list-style: none;
}

.advantages-card li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.advantages-card li:last-child {
    border-bottom: none;
}

.related-services li {
    margin-bottom: 0.75rem;
}

.related-services a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.related-services a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* FAQ List */
.faq-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Brands Grid Enhanced */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.brand-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s;
}

.brand-item:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for New Elements */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .upgrade-grid,
    .packages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .process-steps .step,
    .steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .upgrade-card,
    .package-card,
    .service-card,
    .step {
        padding: 1.5rem;
    }
    
    .upgrade-icon,
    .service-icon {
        font-size: 2rem;
    }
    
    .package-price {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
    }
}