/* ==========================================================================
   COLLABORATION PAGE - MAIN LAYOUT SECTIONS
   ========================================================================== */

/* Collaboration Hero Section */
.collaboration-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 5, 16, 0.9) 0%, rgba(9, 9, 26, 0.85) 50%, rgba(15, 25, 55, 0.8) 100%);
}

.collaboration-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.collaboration-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff 0%, #4cc9f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Philosophy Section */
.pricing-philosophy {
    padding: 80px 0;
    background: rgba(5, 5, 16, 0.95);
}

/* Collaboration Models Section */
.collaboration-models {
    padding: 60px 0;
    background: rgba(5, 5, 16, 0.95);
    position: relative;
    overflow: hidden;
}

.collaboration-models::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #4cc9f0, #3a0ca3);
}

/* Model Comparison Section */
.model-comparison {
    padding: 80px 0;
    background: rgba(5, 5, 16, 0.95);
}

/* How to Choose Section */
.how-to-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(9, 9, 26, 0.95) 0%, rgba(5, 5, 16, 0.95) 100%);
}

/* Contact Section */
.collaboration-contact {
    padding: 80px 0;
    background: rgba(5, 5, 16, 0.95);
}

/* ==========================================================================
   COMPONENTS - Reusable UI Components
   ========================================================================== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff, #4cc9f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Philosophy Cards */
.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    border-color: rgba(76, 201, 240, 0.2);
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.philosophy-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Pricing Factors */
.pricing-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.factor {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.factor i {
    color: #4cc9f0;
    font-size: 1.1rem;
}

.philosophy-card ul {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
    margin-top: 15px;
}

.philosophy-card li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* CTA Box */
.cta-box {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(76, 201, 240, 0.2);
    text-align: center;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-content h3 i {
    color: #4cc9f0;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
}

/* ==========================================================================
   MODELS GRID
   ========================================================================== */

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Model Cards */
.model-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.model-card.featured {
    border: 2px solid #4361ee;
}

/* Model Header */
.model-header {
    padding: 24px 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    text-align: center;
}

.model-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
}

.model-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.model-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-card.featured .model-badge {
    background: linear-gradient(135deg, #f72585, #4361ee);
}

/* Model Content */
.model-content {
    padding: 24px;
    flex-grow: 1;
}

/* Price Tag */
.price-tag {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.price-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Compact Features */
.model-features.compact,
.model-process.compact,
.model-services.compact {
    margin-bottom: 20px;
}

.model-features.compact h4,
.model-process.compact h4,
.model-services.compact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.model-features.compact h4::before,
.model-process.compact h4::before,
.model-services.compact h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: #4cc9f0;
    margin-right: 8px;
    border-radius: 2px;
}

.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.compact-list li i {
    color: #4cc9f0;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.compact-list li span {
    flex: 1;
}

/* Process Steps */
.process-steps.compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Toggle Details Button */
.toggle-details-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #4cc9f0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin: 20px 0;
}

.toggle-details-btn:hover {
    background: rgba(76, 201, 240, 0.1);
    border-color: rgba(76, 201, 240, 0.3);
}

.toggle-details-btn.active i {
    transform: rotate(180deg);
}

/* Additional Details */
.additional-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.additional-details.active {
    max-height: 1000px;
}

/* Compact Grid */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.compact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.compact-item i {
    color: #4cc9f0;
}

/* Advantages */
.model-advantages.compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.advantage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    gap: 6px;
}

.advantage i {
    color: #4cc9f0;
    font-size: 1.25rem;
}

.advantage span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Services Grid */
.services-grid.compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    gap: 8px;
}

.service i {
    color: #7209b7;
    font-size: 1.25rem;
}

.service span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Model Footer */
.model-footer {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.model-select-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.model-select-btn:hover {
    background: linear-gradient(135deg, #3a0ca3, #4361ee);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(67, 97, 238, 0.4);
}

.model-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Section Footer */
.section-footer {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.cta-link {
    color: #4cc9f0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cta-link:hover {
    color: #4361ee;
    text-decoration: underline;
}

/* ==========================================================================
   MODEL COMPARISON TABLE
   ========================================================================== */

.comparison-table {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-cell {
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

.table-header .table-cell {
    font-size: 1.1rem;
    color: #fff;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row .table-cell {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.table-row .table-cell:first-child {
    text-align: left;
    justify-content: flex-start;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.table-row i {
    color: #4cc9f0;
    font-size: 1.1rem;
}

.table-row i.fa-times {
    color: rgba(255, 255, 255, 0.3);
}

.comparison-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(76, 201, 240, 0.05);
    border-radius: 10px;
    border-left: 4px solid #4cc9f0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.comparison-note i {
    color: #4cc9f0;
    margin-right: 10px;
}

/* ==========================================================================
   HOW TO CHOOSE GUIDES
   ========================================================================== */

.choice-guide {
    max-width: 900px;
    margin: 50px auto 0;
}

.guide-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.guide-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.guide-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.guide-content ul {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
    margin-top: 15px;
}

.guide-content li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Budget Options */
.budget-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.budget-option {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.budget-option h4 {
    color: #4cc9f0;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.budget-option p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.budget-match {
    color: #4cc9f0;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

/* Timeline Options */
.timeline-options {
    margin-top: 20px;
}

.timeline {
    margin-bottom: 20px;
}

.timeline-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.timeline-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.timeline-fill {
    height: 100%;
    background: linear-gradient(90deg, #4361ee, #4cc9f0);
    border-radius: 10px;
}

.timeline-fill.short {
    width: 30%;
}

.timeline-fill.medium {
    width: 60%;
}

.timeline-fill.long {
    width: 100%;
}

.timeline-match {
    color: #4cc9f0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Help Options */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.help-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-option:hover {
    background: rgba(76, 201, 240, 0.1);
    border-color: rgba(76, 201, 240, 0.3);
    transform: translateY(-5px);
}

.help-option i {
    color: #4cc9f0;
    font-size: 2rem;
}

.help-option span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.help-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 201, 240, 0.05);
    border-radius: 8px;
}

/* ==========================================================================
   CONTACT FORM COMPONENTS
   ========================================================================== */

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #4cc9f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.model-selection {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.model-selection h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-selection h3 i {
    color: #4cc9f0;
}

.selection-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.selection-option {
    position: relative;
}

.selection-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.selection-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.selection-option input[type="radio"]:checked + label {
    background: rgba(76, 201, 240, 0.1);
    border-color: #4cc9f0;
    color: #fff;
}

.selection-option label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(76, 201, 240, 0.3);
}

.selection-option i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.selection-option input[type="radio"]:checked + label i {
    color: #4cc9f0;
}

.selection-option span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

.selection-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
    .models-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .selection-options {
        grid-template-columns: 1fr;
    }
    
    /* FIXED: Mobile responsive for comparison table */
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-header {
        display: none; /* Hide header on mobile */
    }
    
    .table-row {
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .table-row .table-cell {
        display: block;
        padding: 10px;
        text-align: left !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-weight: normal;
    }
    
    .table-row .table-cell:first-child {
        font-weight: 600;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .table-row .table-cell:last-child {
        border-bottom: none;
    }
    
    .table-row .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        margin-right: 10px;
        min-width: 120px;
        display: inline-block;
    }
    
    .table-row i {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .collaboration-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-factors {
        grid-template-columns: 1fr;
    }
    
    .guide-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .guide-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .compact-grid,
    .model-advantages.compact,
    .services-grid.compact {
        grid-template-columns: 1fr;
    }
    
    .budget-options {
        grid-template-columns: 1fr;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
    
    .model-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .model-header {
        padding: 20px 20px 12px;
    }
    
    .model-content {
        padding: 20px;
    }
    
    .process-steps.compact {
        gap: 10px;
    }
    
    .section-footer {
        padding: 20px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .model-title {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
    
    .model-select-btn {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    /* Additional mobile fixes for comparison table */
    .table-row {
        padding: 10px;
    }
    
    .table-row .table-cell {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .table-row .table-cell::before {
        min-width: 100px;
        font-size: 0.85rem;
    }
}