/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.language-dropdown {
    position: relative;
}

.language-button {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    transition: all 0.3s ease;
    min-width: 120px;
}

.language-button:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.language-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-dropdown.show .language-arrow {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8fafc;
    color: #2563eb;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    margin-top: -0.2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-pricing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    position: relative;
}

.price-item.popular {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    transform: scale(1.05);
    border: 2px solid #FFD700;
}

.price-item.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4500;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.price-item.popular .price {
    color: #000;
}

.service {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-item.popular .service {
    color: #000;
    opacity: 1;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1e40af;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: white;
    color: #2563eb;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.video-section h2 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Quick CTA Section */
.quick-cta {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-detailed {
    padding: 80px 0;
}

.service-card {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    text-align: center;
    padding: 3rem;
    border-bottom: 2px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-header h2 {
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-content {
    padding: 3rem;
}

.service-content > p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
}

.included-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 600px;
    border-left: 4px solid #10b981;
}

.included-section h3 {
    color: #059669;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #374151;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.2s ease;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li:hover {
    color: #059669;
    padding-left: 0.5rem;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-info {
    padding: 3rem;
}

.price-range {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-description ul {
    list-style: none;
    margin: 1rem 0;
}

.service-description li {
    padding: 0.25rem 0;
    color: #059669;
}

.pricing-table {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Pricing Section Styles */
.pricing-section {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.pricing-explanation {
    background: #eff6ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.pricing-explanation p {
    margin: 0.5rem 0;
    color: #374151;
    font-size: 1rem;
}

.pricing-explanation strong {
    color: #2563eb;
}

.simple-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-card h4 {
    color: #2563eb;
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-display .plus {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-card .pricing-note {
    color: #64748b;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.pricing-notes {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #059669;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-notes h4 {
    color: #059669;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    text-align: center;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-notes li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
}

/* RAM Pricing Table Styles */
.ram-pricing-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem auto;
    border-left: 4px solid #2563eb;
    max-width: 1100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ram-pricing-section h3 {
    color: #2563eb;
    margin: 0 0 1rem 0;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

.ram-pricing-section > p {
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
}

.ram-pricing-table {
    overflow-x: auto;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.ram-pricing-table table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    font-size: 1.2rem;
}

.ram-pricing-table th,
.ram-pricing-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.ram-pricing-table th {
    background: #2563eb;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ram-pricing-table tr:hover {
    background: #f8fafc;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.ram-pricing-table tr:last-child td {
    border-bottom: none;
}

.ram-pricing-table td {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
}

.ram-pricing-table td:first-child {
    font-weight: 700;
    color: #2563eb;
}

.ram-pricing-table td:nth-child(3),
.ram-pricing-table td:nth-child(4) {
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-notes {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
}

.pricing-notes p {
    margin: 1.2rem 0;
    font-size: 1.1rem;
    color: #374151;
    text-align: center;
}

.pricing-notes strong {
    color: #2563eb;
}

.pricing-notes .pricing-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .ram-pricing-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }
    
    .ram-pricing-table {
        font-size: 0.9rem;
    }
    
    .ram-pricing-table th,
    .ram-pricing-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .ram-pricing-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ram-pricing-table {
        font-size: 0.8rem;
    }
    
    .ram-pricing-table th,
    .ram-pricing-table td {
        padding: 0.5rem 0.3rem;
    }
}

/* Thermal Pricing Styles */
.thermal-pricing {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.thermal-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h4 {
    color: #2563eb;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-card .price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
}

.price-card p {
    margin: 0.5rem 0;
    color: #374151;
    font-weight: 500;
}

.price-card .price-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .thermal-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Remove old detailed pricing table styles */
.detailed-pricing-table,
.pricing-header,
.pricing-row-group,
.pricing-row,
.col-type,
.col-capacity,
.col-desktop,
.col-laptop {
    display: none;
}

/* Responsive adjustments for pricing */
@media (max-width: 768px) {
    .simple-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price-display {
        font-size: 2rem;
    }
}

/* Performance Simulation Styles */
.performance-simulation {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.simulation-controls {
    text-align: center;
    margin-bottom: 3rem;
}

.simulation-controls h2 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.toggle-container {
    margin: 2rem 0;
}

.toggle-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.toggle-btn.after {
    background: #059669;
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.game-simulation {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.game-screen {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-ui {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.fps-counter, .memory-usage, .performance-status {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.fps-value {
    color: #ff6b6b;
    font-weight: bold;
}

.memory-value {
    color: #4ecdc4;
    font-weight: bold;
}

.status-text.good {
    color: #51cf66;
}

.status-text.poor {
    color: #ff6b6b;
}

.game-content {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 60px;
    background: linear-gradient(to bottom, #87ceeb 0%, #98fb98 100%);
    border-radius: 10px;
    overflow: hidden;
}

.player {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #2563eb;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: transform 0.1s ease;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
}

.enemy {
    position: absolute;
    top: 20px;
    width: 25px;
    height: 25px;
    background: #dc2626;
    border-radius: 4px;
    transition: transform 0.1s ease;
}

.enemy1 { left: 50px; }
.enemy2 { left: 150px; }
.enemy3 { left: 250px; }

.poor-performance .player,
.poor-performance .enemy {
    animation: stutter 0.5s infinite;
}

.smooth-performance .player,
.smooth-performance .enemy {
    animation: none;
}

@keyframes stutter {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(2px); }
}

.lag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 20;
}

.performance-stats {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.performance-stats h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    text-align: center;
}

.stat-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 4px;
}

.fps-progress {
    background: linear-gradient(90deg, #dc2626 0%, #059669 100%);
}

.smooth-progress {
    background: linear-gradient(90deg, #dc2626 0%, #059669 100%);
}

.memory-progress {
    background: linear-gradient(90deg, #059669 0%, #dc2626 100%);
}

.stat-value {
    font-size: 0.8rem;
    color: #64748b;
    text-align: right;
}

.upgrade-benefits {
    margin: 3rem 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:first-child {
    opacity: 1;
}

.benefit-card:last-child {
    opacity: 0.5;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-card li {
    padding: 0.5rem 0;
    color: #374151;
}

.real-testimonials {
    background: white;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 20px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: #1f2937;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.testimonial-card p {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.performance-change {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.before {
    color: #ef4444;
    font-weight: bold;
}

.after {
    color: #10b981;
    font-weight: bold;
}

.arrow {
    color: #60a5fa;
    margin: 0 1rem;
    font-weight: bold;
}

.honest-disclaimer {
    background: #fbbf24;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.honest-disclaimer p {
    color: #1f2937;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.customer {
    font-style: italic;
    color: #64748b;
    margin-top: 1rem;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-simulation {
        grid-template-columns: 1fr;
    }
    
    .game-screen {
        height: 300px;
    }
    
    .game-ui {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .fps-counter, .memory-usage, .performance-status {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.service-media {
    padding: 1rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison-section {
    background: #f8fafc;
    padding: 60px 0;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
    background: #2563eb;
    color: white;
}

.comparison-row:nth-child(even) {
    background: #f8fafc;
}

.compare-item {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

.compare-item:last-child {
    border-right: none;
}

.compare-item.highlight {
    background: #dcfce7;
    font-weight: 600;
}

.comparison-header .compare-item.highlight {
    background: #059669;
}

/* Portfolio Page Styles */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-item {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.portfolio-content.reverse {
    direction: rtl;
}

.portfolio-content.reverse > * {
    direction: ltr;
}

.portfolio-info {
    padding: 3rem;
}

.portfolio-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.portfolio-meta span {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-price {
    background: #dcfce7 !important;
    color: #059669 !important;
}

.performance-stats {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.stat-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-before {
    color: #dc2626;
    text-align: right;
}

.stat-after {
    color: #059669;
}

.stat-arrow {
    color: #2563eb;
    font-weight: bold;
}

.customer-quote {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.portfolio-media {
    padding: 1rem;
}

.portfolio-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.portfolio-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Portfolio Stats */
.portfolio-stats {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-methods {
    padding: 60px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-button.whatsapp {
    background: #25d366;
    color: white;
}

.contact-button.whatsapp:hover {
    background: #128c7e;
}

.contact-button.phone {
    background: #2563eb;
    color: white;
}

.contact-button.phone:hover {
    background: #1e40af;
}

.contact-button.email {
    background: #64748b;
    color: white;
}

.contact-button.email:hover {
    background: #475569;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-container,
.booking-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #1e40af;
}

.submit-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.service-terms-note {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-left: 3px solid #2563eb;
    border-radius: 5px;
}

.service-terms-note p {
    margin: 0;
    color: #6b7280;
}

.service-terms-note a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.service-terms-note a:hover {
    text-decoration: underline;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-message.success {
    background: #dcfce7;
    color: #059669;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Booking Section */
.booking-section {
    margin-bottom: 2rem;
}

.calendly-container {
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.calendly-note {
    text-align: center;
    margin-top: 1rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.quick-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.about-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

/* Terms Page Styles */
.terms-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.terms-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.terms-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.terms-content {
    padding: 60px 0;
    background: #f8fafc;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.terms-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
}

.terms-card h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.terms-card li:last-child {
    border-bottom: none;
}

.terms-note {
    font-style: italic;
    color: #6b7280;
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.terms-card.important {
    border-left-color: #f59e0b;
}

.terms-card.important h2 {
    color: #f59e0b;
}

.terms-card.protected {
    border-left-color: #10b981;
}

.terms-card.protected h2 {
    color: #10b981;
}

.terms-card.not-covered {
    border-left-color: #ef4444;
}

.terms-card.not-covered h2 {
    color: #ef4444;
}

.terms-card.questions {
    border-left-color: #8b5cf6;
}

.terms-card.questions h2 {
    color: #8b5cf6;
}

.terms-contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.terms-contact-buttons .btn-primary,
.terms-contact-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-contact-buttons .btn-primary {
    background: #2563eb;
    color: white;
}

.terms-contact-buttons .btn-primary:hover {
    background: #1d4ed8;
}

.terms-contact-buttons .btn-secondary {
    background: #10b981;
    color: white;
}

.terms-contact-buttons .btn-secondary:hover {
    background: #059669;
}

.full-agreement {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.full-agreement h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #2563eb;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

@media (max-width: 768px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-contact-buttons {
        flex-direction: column;
    }
}

/* End Terms Styles */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .language-selector {
        margin-left: 0;
        margin-right: 1rem;
    }

    .language-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 100px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-pricing {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-content,
    .portfolio-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .compare-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .compare-item:last-child {
        border-bottom: none;
    }

    .stat-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }

    .portfolio-images {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .features-grid,
    .stats-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .service-info,
    .portfolio-info {
        padding: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .cta-button,
    .contact-button,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .page-header {
        background: none;
        color: black;
    }
}

/* Combo Section */
.combo-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 60px 0;
    margin: 60px 0;
}

.combo-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.combo-card h2 {
    color: #059669;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.combo-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.combo-description {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.combo-benefits {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.benefit-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.combo-cta-button {
    display: inline-block;
    background: #059669;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.combo-cta-button:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

@media (max-width: 768px) {
    .combo-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .combo-card h2 {
        font-size: 1.8rem;
    }
    
    .combo-description {
        font-size: 1.1rem;
    }
}

/* Video Placeholder Styles */
.video-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px dashed #9ca3af;
}

.video-placeholder h4 {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.video-placeholder p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.performance-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.stat .number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.stat .label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* ===== CUSTOMER EXPERIENCE OPTIMIZATIONS ===== */

/* Hero Section Trust Building */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-pricing .price-item.popular {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    transform: scale(1.05);
    border: 2px solid #FFD700;
    position: relative;
}

.hero-pricing .price-item.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4500;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #007bff;
}

/* Contact Form Customer Clarity */
.response-guarantee {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.clock-icon {
    font-size: 1.2rem;
}

.process-steps {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.process-steps h4 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
}

.steps {
    display: grid;
    gap: 12px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.step-number {
    background: #007bff;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.submit-button.primary-cta {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-button.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .trust-badges {
        gap: 8px;
    }
    
    .trust-badges .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .steps {
        gap: 8px;
    }
    
    .step {
        padding: 8px;
    }
}
