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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: #00BCF2;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.nav-brand .tagline {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    font-weight: 500;
    line-height: 1;
}

.nav-center {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-center a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-center a:hover {
    color: #00BCF2;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00BCF2;
}

.section-accent {
    color: #00BCF2;
}

.feature-highlight {
    border: 3px solid #00BCF2;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-chevron {
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease;
    transform: rotate(-90deg);
    color: #666;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(0deg);
    color: #00BCF2;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.dropdown-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
    background: white;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

/* Service-specific hover colors */
.dropdown-link:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(255, 75, 75, 0.1) 0%, rgba(229, 62, 62, 0.05) 100%);
    border-left-color: #FF4B4B;
}

.dropdown-link:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.1) 0%, rgba(0, 161, 66, 0.05) 100%);
    border-left-color: #00C851;
}

.dropdown-link:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(0, 188, 242, 0.1) 0%, rgba(0, 120, 212, 0.05) 100%);
    border-left-color: #00BCF2;
}

.dropdown-link:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(255, 185, 0, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-left-color: #FFB900;
}

.dropdown-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.3s ease;
    z-index: -1;
}

/* Direct Routing - Red (1st position) */
.dropdown-link:nth-child(1):hover {
    color: #FF4B4B !important;
    background: linear-gradient(135deg, rgba(255, 75, 75, 0.1) 0%, rgba(229, 62, 62, 0.05) 100%);
    border-left-color: #FF4B4B;
    transform: translateX(6px);
}

.dropdown-link:nth-child(1):hover::before {
    background: linear-gradient(135deg, #FF4B4B 0%, #E53E3E 100%);
}

/* Operator Connect - Green (2nd position) */
.dropdown-link:nth-child(2):hover {
    color: #00C851 !important;
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.1) 0%, rgba(0, 161, 66, 0.05) 100%);
    border-left-color: #00C851;
    transform: translateX(6px);
}

.dropdown-link:nth-child(2):hover::before {
    background: linear-gradient(135deg, #00C851 0%, #00A142 100%);
}

/* Dynamics 365 Contact Centre - Blue (3rd position) */
.dropdown-link:nth-child(3):hover {
    color: #00BCF2 !important;
    background: linear-gradient(135deg, rgba(0, 188, 242, 0.1) 0%, rgba(0, 120, 212, 0.05) 100%);
    border-left-color: #00BCF2;
    transform: translateX(6px);
}

.dropdown-link:nth-child(3):hover::before {
    background: linear-gradient(135deg, #00BCF2 0%, #0078D4 100%);
}

/* Dynamics 365 Customer Service - Orange (4th position) */
.dropdown-link:nth-child(4):hover {
    color: #FFB900 !important;
    background: linear-gradient(135deg, rgba(255, 185, 0, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-left-color: #FFB900;
    transform: translateX(6px);
}

.dropdown-link:nth-child(4):hover::before {
    background: linear-gradient(135deg, #FFB900 0%, #F59E0B 100%);
}



/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00BCF2 0%, #0078D4 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0078D4 0%, #005A9E 100%);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00BCF2 0%, #6B46C1 40%, #7C3AED 70%, #8B5CF6 100%);
    color: white;
    padding: 160px 0 120px;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid transparent;
}

.service-card:nth-child(1) {
    border-color: #FF4B4B;
    grid-column: 1;
    grid-row: 1;
}

.service-card:nth-child(2) {
    border-color: #00C851;
    grid-column: 2;
    grid-row: 1;
}

.service-card:nth-child(3) {
    border-color: #00BCF2;
    grid-column: 1;
    grid-row: 2;
}

.service-card:nth-child(4) {
    border-color: #FFB900;
    grid-column: 2;
    grid-row: 2;
}

.service-card {
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:active {
    transform: translateY(-4px);
    transition: all 0.1s;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-icon {
    color: #FF4B4B;
}

.service-card:nth-child(2) .service-icon {
    color: #00C851;
}

.service-card:nth-child(3) .service-icon {
    color: #00BCF2;
}

.service-card:nth-child(4) .service-icon {
    color: #FFB900;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: #fafbfc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature p {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Comparison Section */
.comparison {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.comparison-table-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem 0.5rem;
    font-weight: 700;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
    border: none;
    border-bottom: 3px solid rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    word-wrap: break-word;
}

.comparison-table th:first-child {
    text-align: center;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-top-left-radius: 16px;
    border-right: 2px solid rgba(255,255,255,0.3);
}

.comparison-table th:nth-child(2) {
    background: linear-gradient(135deg, #FF4B4B 0%, #E53E3E 100%);
}

.comparison-table th:nth-child(3) {
    background: linear-gradient(135deg, #00C851 0%, #00A142 100%);
}

.comparison-table th:nth-child(4) {
    background: linear-gradient(135deg, #00BCF2 0%, #0078D4 100%);
}

.comparison-table th:nth-child(5) {
    background: linear-gradient(135deg, #FFB900 0%, #F59E0B 100%);
}

.comparison-table th:last-child {
    border-top-right-radius: 16px;
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
}

.comparison-table td {
    padding: 1rem 0.6rem;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.8rem;
    position: relative;
    background: white;
    color: #333;
    transition: background-color 0.2s ease;
    vertical-align: middle;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.comparison-table td:first-child {
    text-align: center;
    font-weight: 600;
    background: #f7fafc;
    color: #2d3748;
    border-right: 2px solid #cbd5e0;
}

.comparison-table td:not(:first-child) {
    text-align: center;
    white-space: nowrap;
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    color: white;
    font-weight: 600;
    height: 80px;
    white-space: normal;
    padding: 1.2rem 0.8rem;
    vertical-align: top;
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
    background: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.comparison-table tbody tr:hover td {
    background: #f8fafc;
}

.comparison-table tbody tr:hover td:first-child {
    background: #edf2f7;
}

.comparison-table tbody tr:last-child:hover td {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
}

.comparison-table tbody tr:last-child:hover td:first-child {
    background: #edf2f7;
}

.check {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
}

.cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
}

/* Mobile comparison cards */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        display: none;
    }

    .comparison {
        padding: 60px 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fafbfc;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 200, 81, 0.1) 50%, transparent 100%);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 200, 81, 0.1) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #00C851;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial cite {
    color: #666;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF4B4B 0%, #FFB900 50%, #00C851 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-phone {
    font-size: 1.1rem;
}

.contact-phone a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #00BCF2;
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    margin-bottom: 0.5rem;
    display: block;
    object-fit: contain;
    filter: brightness(1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00BCF2;
    box-shadow: 0 0 0 2px rgba(0, 188, 242, 0.2);
}

/* Insights Styles */
.insights-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.insight-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.insight-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.insight-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.insight-card.featured .insight-image {
    height: auto;
    min-height: 250px;
}

.insight-placeholder {
    font-size: 4rem;
    color: white;
    z-index: 2;
    position: relative;
}

/* Gradient backgrounds for different insight categories */
.insight-card:nth-child(1) .insight-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.insight-card:nth-child(2) .insight-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.insight-card:nth-child(3) .insight-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.insight-card:nth-child(4) .insight-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.insight-card:nth-child(5) .insight-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.insight-card:nth-child(6) .insight-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Add some geometric patterns */
.insight-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="50" cy="50" r="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') repeat;
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.insight-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-category {
    display: inline-block;
    background: #e3f2fd;
    color: #0078D4;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.insight-date,
.insight-read-time {
    white-space: nowrap;
}

/* Recent Insights Section */
.recent-insights {
    padding: 80px 0;
    background: white;
}

.insights-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.insight-preview-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.insight-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25pxrgba(0,0,0,0.15);
}

.insight-preview-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.insight-preview-card:nth-child(1) .insight-preview-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.insight-preview-card:nth-child(2) .insight-preview-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.insight-preview-card:nth-child(3) .insight-preview-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.insight-preview-content {
    padding: 2rem;
}

.insight-preview-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-preview-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insights-cta {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card.featured {
        grid-template-columns: 1fr;
    }

    .insights-preview-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-center {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .comparison-table-wrapper {
        margin: 0 -20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-actions {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }

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

    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}