/* Reset and Base Styles */
* {
    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: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.mdqr-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 16px 0;
}

.mdqr-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mdqr-logo {
    width: 140px;
    height: 40px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.mdqr-nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
}

.mdqr-nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.mdqr-nav-link:hover,
.mdqr-nav-link.active {
    color: #0066ff;
}

.mdqr-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mdqr-nav-link:hover::after,
.mdqr-nav-link.active::after {
    width: 100%;
}

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

.mdqr-btn-cta {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.mdqr-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

/* Hero Section */
.mdqr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

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

.mdqr-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    color: #0066ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.mdqr-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.mdqr-hero-badge:hover::before {
    left: 100%;
}

.mdqr-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.mdqr-gradient-text {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.mdqr-gradient-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    opacity: 0.3;
}

.mdqr-hero-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.mdqr-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.mdqr-btn-primary {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.mdqr-btn-primary::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 ease;
}

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

.mdqr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}

.mdqr-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.mdqr-btn-secondary:hover {
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-2px);
}

.mdqr-hero-stats {
    display: flex;
    gap: 48px;
}

.mdqr-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.mdqr-stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #0066ff, transparent);
    transform: translateY(-50%);
}

.mdqr-stat:last-child::after {
    display: none;
}

.mdqr-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mdqr-stat-label {
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
}

.mdqr-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mdqr-hero-image {
    position: relative;
    z-index: 2;
}

.mdqr-hero-image img {
    width: 80%;
    margin-left: 10%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
}

.mdqr-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mdqr-decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    top: -50px;
    right: -50px;
    animation: pulse 4s ease-in-out infinite;
}

.mdqr-decoration-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #0066ff, transparent);
    right: 50px;
    bottom: -50px;
}

.mdqr-decoration-dots {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: -30px;
    background-image: radial-gradient(circle, #0066ff 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.mdqr-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mdqr-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02), rgba(0, 212, 255, 0.02));
}

.mdqr-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 102, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.mdqr-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mdqr-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05));
}

.mdqr-bg-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation: float 6s ease-in-out infinite;
}

.mdqr-bg-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.mdqr-bg-shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Partners Section */
.mdqr-partners {
    padding: 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.mdqr-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.mdqr-partners-label {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin-bottom: 48px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mdqr-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.mdqr-partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 16px;
    border-radius: 8px;
}

.mdqr-partner-logo:hover {
    opacity: 1;
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
}

.mdqr-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.mdqr-partner-logo:hover img {
    filter: grayscale(0%);
}

/* Services Section */
.mdqr-services {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.mdqr-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.01), rgba(0, 212, 255, 0.01));
    pointer-events: none;
}

.mdqr-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.mdqr-section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.mdqr-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.mdqr-section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mdqr-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.mdqr-service-card {
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.mdqr-service-card:hover {
    border-color: #0066ff;
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.1);
    transform: translateY(-4px);
}

.mdqr-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.mdqr-service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-service-card:hover .mdqr-service-icon::before {
    left: 100%;
}

.mdqr-service-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.mdqr-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mdqr-service-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mdqr-service-features {
    list-style: none;
    margin-bottom: 24px;
}

.mdqr-service-features li {
    color: #666666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.mdqr-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: bold;
}

.mdqr-service-link {
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mdqr-service-link:hover {
    color: #0052cc;
    gap: 12px;
}

/* Features Section */
.mdqr-features {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.mdqr-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.mdqr-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mdqr-features-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mdqr-features-subtitle {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 48px;
    line-height: 1.6;
}

.mdqr-features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mdqr-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.mdqr-feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateX(8px);
}

.mdqr-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mdqr-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-feature-item:hover .mdqr-feature-icon::before {
    left: 100%;
}

.mdqr-feature-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.mdqr-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.mdqr-feature-content p {
    color: #666666;
    line-height: 1.6;
}

.mdqr-features-visual {
    position: relative;
}

.mdqr-features-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
}

.mdqr-features-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    z-index: -1;
}

/* Statistics Section */
.mdqr-statistics {
    padding: 120px 0;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: white;
    position: relative;
    overflow: hidden;
}

.mdqr-statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.mdqr-statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 2;
}

.mdqr-statistic-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mdqr-statistic-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mdqr-statistic-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

.mdqr-statistic-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-statistic-card:hover .mdqr-statistic-icon::before {
    left: 100%;
}

.mdqr-statistic-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.mdqr-statistic-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.mdqr-statistic-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.mdqr-testimonials {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.mdqr-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.01), rgba(0, 212, 255, 0.01));
    pointer-events: none;
}

.mdqr-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.mdqr-testimonial-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 102, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.mdqr-testimonial-card:hover {
    border-color: #0066ff;
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.1);
    transform: translateY(-4px);
}

.mdqr-testimonial-content {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.mdqr-testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
}

.mdqr-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mdqr-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.mdqr-testimonial-card:hover .mdqr-testimonial-author img {
    border-color: #0066ff;
}

.mdqr-author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.mdqr-author-info span {
    font-size: 0.875rem;
    color: #666666;
}

/* CTA Section */
.mdqr-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mdqr-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.mdqr-cta-content {
    position: relative;
    z-index: 2;
}

.mdqr-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.mdqr-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mdqr-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.mdqr-btn-outline {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-btn-outline::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 ease;
}

.mdqr-btn-outline:hover::before {
    left: 100%;
}

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

/* Footer */
.mdqr-footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.mdqr-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
}

.mdqr-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.mdqr-footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
}

.mdqr-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    border-radius: 1px;
}

.mdqr-footer-section p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mdqr-footer-section ul {
    list-style: none;
}

.mdqr-footer-section ul li {
    margin-bottom: 12px;
}

.mdqr-footer-section ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 16px;
}

.mdqr-footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066ff;
    transition: transform 0.3s ease;
}

.mdqr-footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.mdqr-footer-section ul li a:hover::before {
    transform: translateX(4px);
}

.mdqr-social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.mdqr-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mdqr-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mdqr-social-link:hover::before {
    left: 100%;
}

.mdqr-social-link:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

.mdqr-social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mdqr-footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.mdqr-footer-bottom p {
    color: #a1a1aa;
}

.mdqr-footer-links {
    display: flex;
    gap: 24px;
}

.mdqr-footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mdqr-footer-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mdqr-nav-menu {
        display: none;
    }
    
    .mdqr-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .mdqr-hero-title {
        font-size: 2.5rem;
    }
    
    .mdqr-hero-stats {
        justify-content: center;
    }
    
    .mdqr-features-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mdqr-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .mdqr-services-grid {
        grid-template-columns: 1fr;
    }
    
    .mdqr-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .mdqr-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .mdqr-cta-title {
        font-size: 2.5rem;
    }
    
    .mdqr-section-title {
        font-size: 2.5rem;
    }
    
    .mdqr-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mdqr-container {
        padding: 0 16px;
    }
    
    .mdqr-hero-title {
        font-size: 2rem;
    }
    
    .mdqr-hero-subtitle {
        font-size: 1rem;
    }
    
    .mdqr-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mdqr-hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .mdqr-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mdqr-section-title {
        font-size: 2rem;
    }
    
    .mdqr-features-title {
        font-size: 2rem;
    }
    
    .mdqr-statistics-grid {
        grid-template-columns: 1fr;
    }
} 

/* Font Awesome Icons - White Color */
.fas, .fab, .far {
    color: #ffffff;
}

/* Service icons */
.mdqr-service-icon .fas,
.mdqr-service-icon .fab,
.mdqr-service-icon .far {
    color: #ffffff;
    font-size: 2rem;
}

/* Feature icons */
.mdqr-feature-icon .fas,
.mdqr-feature-icon .fab,
.mdqr-feature-icon .far {
    color: #ffffff;
    font-size: 1.5rem;
}

/* Statistic icons */
.mdqr-statistic-icon .fas,
.mdqr-statistic-icon .fab,
.mdqr-statistic-icon .far {
    color: #ffffff;
    font-size: 2rem;
}

/* Social media icons */
.mdqr-social-link .fas,
.mdqr-social-link .fab,
.mdqr-social-link .far {
    color: #ffffff;
    font-size: 1.2rem;
} 