.nav-menu ul li a {
    position: relative;
    display: inline-block;
}

.nav-menu ul li a::after {
    max-width: 100%;
    box-sizing: border-box;
}

.service-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
    z-index: 0;
}

.service-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, #e94560, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #f8f9fa;
}

.hero-text .description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 400px;
}

.hero-icon-item {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-icon-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-icon-item i {
    font-size: 2rem;
    color: #3498db;
}

.hero-icon-item:nth-child(1) i { color: #217346; }
.hero-icon-item:nth-child(2) i { color: #2b579a; }
.hero-icon-item:nth-child(3) i { color: #d24726; }
.hero-icon-item:nth-child(4) i { color: #0072c6; }
.hero-icon-item:nth-child(5) i { color: #9b59b6; }
.hero-icon-item:nth-child(6) i { color: #e67e22; }

.hero-icon-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.case-study-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.case-header {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    gap: 30px;
}

.case-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-logo i {
    font-size: 2.5rem;
    color: #3498db;
}

.case-title h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.case-title .case-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.case-badges {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.case-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #7ec8e3;
}

.case-body {
    padding: 40px;
}

.case-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.case-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.case-feature-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.case-feature-item:hover {
    background: #eef5fc;
    transform: translateX(5px);
}

.case-feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.case-feature-text h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
}

.case-feature-text p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.case-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px 0;
    border-top: 1px solid #eee;
}

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

.case-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.case-stat .stat-label {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.case-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.service-types-section {
    padding: 80px 0;
}

.service-type-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-type-card:nth-child(1) {
    border-top-color: #3498db;
}

.service-type-card:nth-child(2) {
    border-top-color: #2ecc71;
}

.service-type-card:nth-child(3) {
    border-top-color: #e74c3c;
}

.service-type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.service-type-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-type-card:nth-child(1) .service-type-icon {
    background: #ebf5fb;
}

.service-type-card:nth-child(2) .service-type-icon {
    background: #eafaf1;
}

.service-type-card:nth-child(3) .service-type-icon {
    background: #fdedec;
}

.service-type-icon i {
    font-size: 1.5rem;
}

.service-type-card:nth-child(1) .service-type-icon i {
    color: #3498db;
}

.service-type-card:nth-child(2) .service-type-icon i {
    color: #2ecc71;
}

.service-type-card:nth-child(3) .service-type-icon i {
    color: #e74c3c;
}

.service-type-header h3 {
    font-size: 1.3rem;
    color: #333;
}

.service-type-list {
    list-style: none;
    padding: 0;
}

.service-type-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: #555;
}

.service-type-list li:last-child {
    border-bottom: none;
}

.service-type-list li i {
    color: #3498db;
    margin-top: 4px;
    flex-shrink: 0;
}

.advantage-section {
    padding: 80px 0;
    background: white;
}

.advantage-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.3fr;
}

.comparison-header {
    background: #1a1a2e;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.comparison-row:nth-child(odd) {
    background: white;
}

.comparison-col {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.comparison-dim {
    color: #666;
}

.comparison-highlight {
    color: #217346;
    font-weight: 600;
    background: rgba(33, 115, 70, 0.04);
}

.comparison-header .comparison-highlight {
    background: rgba(255, 255, 255, 0.1);
    color: #4ade80;
}

.comparison-highlight i {
    color: #2ecc71;
}

.comparison-dim i {
    color: #e74c3c;
    font-size: 0.85rem;
}

.advantage-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-summary-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.advantage-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #217346, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.advantage-summary-icon i {
    font-size: 1.4rem;
    color: white;
}

.advantage-summary-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
}

.advantage-summary-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 0.8fr 1.1fr 1.1fr;
    }

    .comparison-col {
        padding: 12px 10px;
        font-size: 0.82rem;
    }

    .advantage-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .comparison-col {
        padding: 10px 8px;
        font-size: 0.78rem;
    }

    .advantage-summary {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-header,
    .comparison-row {
        min-width: 400px;
    }
}

.industry-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

.industry-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: #ebf5fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-icon i {
    font-size: 1.3rem;
    color: #3498db;
}

.industry-header h3 {
    font-size: 1.15rem;
    color: #333;
}

.industry-pain {
    padding: 12px 15px;
    background: #fff5f5;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
    border-left: 3px solid #e74c3c;
}

.industry-solution {
    padding: 12px 15px;
    background: #f0faf0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    border-left: 3px solid #2ecc71;
}

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

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.pricing-grid-custom {
    display: grid;
    gap: 25px;
}

.pricing-tier-cards {
    grid-template-columns: repeat(3, minmax(340px, 1fr));
    max-width: 1100px;
    margin: 0 auto 25px;
}

.pricing-enterprise-cards {
    grid-template-columns: 1fr minmax(340px, 1fr) minmax(340px, 1fr) 1fr;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.pricing-enterprise-cards .pricing-card-custom:first-child {
    grid-column: 2;
}

.pricing-enterprise-cards .pricing-card-custom:last-child {
    grid-column: 3;
}

.pricing-card-custom {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-custom.featured {
    border: 2px solid #3498db;
    transform: scale(1.03);
}

.pricing-card-custom.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge-custom {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-header-custom {
    padding: 30px 25px 20px;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}

.pricing-header-custom h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.pricing-header-custom .pricing-desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.pricing-header-custom .price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

.pricing-header-custom .price-range small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.pricing-body-custom {
    padding: 25px;
}

.pricing-body-custom ul {
    list-style: none;
    padding: 0;
}

.pricing-body-custom ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-body-custom ul li i {
    color: #2ecc71;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-footer-custom {
    padding: 0 25px 25px;
    text-align: center;
}

.pricing-note-custom {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.pricing-note-custom i {
    color: #3498db;
    margin-right: 5px;
}

.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.process-step-num {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.process-step h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

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

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

.contact-content-custom {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-custom {
    flex: 1;
}

.contact-item-custom {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon-custom {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details-custom h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-details-custom p {
    color: #666;
    line-height: 1.6;
}

.contact-form-custom {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-custom .form-group {
    margin-bottom: 20px;
}

.contact-form-custom label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.contact-form-custom label .required {
    color: #e74c3c;
}

.contact-form-custom input,
.contact-form-custom textarea,
.contact-form-custom select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.contact-form-custom input:focus,
.contact-form-custom textarea:focus,
.contact-form-custom select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form-custom textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
    max-width: 320px;
}

.footer-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-column ul li i {
    margin-right: 8px;
    color: #3498db;
    width: 16px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .icp-info a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .icp-info a:hover {
    color: #3498db;
}

.footer-bottom .visitor-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom .visitor-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom .visitor-stats i {
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .service-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text .description {
        max-width: 100%;
    }

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

    .hero-icon-grid {
        max-width: 320px;
    }

    .case-header {
        flex-direction: column;
        text-align: center;
    }

    .case-badges {
        justify-content: center;
    }

    .contact-content-custom {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text .subtitle {
        font-size: 1.3rem;
    }

    .hero-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-icon-item {
        width: 80px;
        height: 80px;
    }

    .hero-icon-item i {
        font-size: 1.5rem;
    }

    .hero-icon-item span {
        font-size: 0.65rem;
    }

    .case-features-grid {
        grid-template-columns: 1fr;
    }

    .case-stats {
        flex-direction: column;
        gap: 20px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tier-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-enterprise-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .pricing-enterprise-cards .pricing-card-custom:first-child,
    .pricing-enterprise-cards .pricing-card-custom:last-child {
        grid-column: auto;
        max-width: none;
        justify-self: center;
    }

    .pricing-card-custom.featured {
        transform: none;
    }

    .pricing-card-custom.featured:hover {
        transform: translateY(-8px);
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        min-width: auto;
        max-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
        min-width: 140px;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul li i {
        display: none;
    }

    .footer-bottom {
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text .subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .case-header {
        padding: 25px;
    }

    .case-title h2 {
        font-size: 1.5rem;
    }

    .case-body {
        padding: 25px;
    }

    .case-actions {
        flex-direction: column;
    }

    .case-actions .btn {
        width: 100%;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pricing-tier-cards,
    .pricing-enterprise-cards {
        grid-template-columns: 1fr !important;
        max-width: 100%;
        gap: 15px;
    }

    .pricing-enterprise-cards .pricing-card-custom:first-child,
    .pricing-enterprise-cards .pricing-card-custom:last-child {
        grid-column: auto;
    }

    .pricing-card-custom {
        padding: 25px 20px;
        transform: none !important;
    }

    .pricing-card-custom.featured {
        transform: none !important;
    }

    .pricing-badge-custom {
        position: static;
        transform: none;
        display: inline-block;
        padding: 4px 12px;
        margin-bottom: 10px;
        font-size: 0.75rem;
    }

    .pricing-header-custom {
        padding-top: 20px;
    }

    .pricing-header-custom h3 {
        font-size: 1.3rem;
    }

    .price-range {
        font-size: 1.5rem;
    }

    .hero-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-icon-item {
        width: 70px;
        height: 70px;
    }

    .hero-icon-item i {
        font-size: 1.3rem;
    }

    .hero-icon-item span {
        font-size: 0.6rem;
    }

    .process-step {
        min-width: 100%;
    }

    .contact-grid-custom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-custom {
        padding: 25px;
    }

    .contact-form-custom {
        padding: 20px;
    }
}
