/* POST-PROJECT SUPPORT PAGE COMPONENTS */

/* Hero support phases */
.support-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.phase-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.phase-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
}

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

.phase-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.phase-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Support timeline */
.support-timeline {
    padding: 5rem 0;
    background: #f8fafc;
}

.support-timeline h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
    position: relative;
    margin-bottom: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    transform: translateX(-50%) scale(1.2);
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.1);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #cbd5e1;
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: right;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.timeline-date {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #374151;
    line-height: 1.6;
}

/* Support services section */
.support-services {
    padding: 5rem 0;
}

.support-services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-tab {
    background: white;
    color: var(--primary-color);
    border: 2px solid #e5e7eb;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.service-tab.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Training section */
.training-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.training-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.training-card.basic {
    border-left: 5px solid #16a34a;
}

.training-card.advanced {
    border-left: 5px solid var(--accent-color);
}

.training-card.expert {
    border-left: 5px solid #dc2626;
}

.training-level {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.training-card.basic .training-level {
    background: #16a34a;
}

.training-card.expert .training-level {
    background: #dc2626;
}

.training-info {
    padding: 2rem 2rem 1rem;
}

.training-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.training-duration,
.training-participants {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.training-content {
    padding: 0 2rem;
}

.training-content h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.training-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.training-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.training-content li:before {
    content: '📚';
    flex-shrink: 0;
}

.training-price {
    background: #f8fafc;
    padding: 1rem 2rem;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
    border-top: 1px solid #e5e7eb;
}

.training-calendar {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
}

.training-calendar h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.calendar-grid {
    display: grid;
    gap: 1rem;
}

.calendar-event {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.calendar-event:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.event-date {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    min-width: 80px;
}

.event-info {
    flex: 1;
    margin: 0 1rem;
}

.event-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.event-location {
    color: #64748b;
    font-size: 0.9rem;
}

.event-register {
    background: #16a34a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-register:hover {
    background: #15803d;
    transform: translateY(-2px);
}

/* Maintenance plans */
.maintenance-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.plan-card.silver {
    border: 2px solid #94a3b8;
}

.plan-card.gold {
    border: 2px solid #f59e0b;
}

.plan-card.platinum {
    border: 2px solid #8b5cf6;
}

.plan-card.popular:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.popular-label {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 0 12px 12px;
    z-index: 1;
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.plan-card.silver .plan-badge {
    background: #94a3b8;
}

.plan-card.gold .plan-badge {
    background: #f59e0b;
}

.plan-card.platinum .plan-badge {
    background: #8b5cf6;
}

.plan-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.plan-header h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.plan-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: normal;
}

.plan-features {
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.9rem;
}

.plan-suitable {
    background: #f0f9ff;
    color: #0369a1;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid #e0f2fe;
}

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

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Support levels */
.support-levels {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-level {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 2rem;
    align-items: start;
    transition: all 0.3s ease;
}

.support-level:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.support-level.level1 {
    border-left: 5px solid #16a34a;
}

.support-level.level2 {
    border-left: 5px solid var(--accent-color);
}

.support-level.level3 {
    border-left: 5px solid #dc2626;
}

.level-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
}

.level-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.level-availability,
.level-response {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.level-services h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.level-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.level-services li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.level-services li:before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
}

.level-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-method:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.contact-method.emergency {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

.contact-method.emergency:hover {
    background: #dc2626;
    color: white;
}

/* Remote support portal */
.remote-support {
    background: #f0f9ff;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #bae6fd;
}

.remote-support h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.remote-support p {
    color: #64748b;
    margin-bottom: 2rem;
}

.portal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portal-feature {
    text-align: center;
}

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

.portal-feature h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portal-feature p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.portal-access-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.portal-access-btn:hover {
    background: #0369a1;
    transform: translateY(-2px);
}

/* Optimization services */
.optimization-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.optimization-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.optimization-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.optimization-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.optimization-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.optimization-price {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.optimization-includes h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.optimization-includes ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.optimization-includes li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.optimization-includes li:before {
    content: '⚡';
    flex-shrink: 0;
}

/* Optimization results */
.optimization-results {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
}

.optimization-results h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.result-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.result-percentage {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.result-description {
    color: #64748b;
    font-size: 0.8rem;
}

/* Upgrade categories */
.upgrade-categories {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.upgrade-category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h4 {
    color: white;
    margin: 0;
}

.upgrade-list {
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.upgrade-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.upgrade-name {
    font-weight: 600;
    color: var(--primary-color);
}

.upgrade-frequency {
    color: #64748b;
    font-size: 0.9rem;
}

.upgrade-price {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Technology roadmap */
.upgrade-roadmap {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
}

.upgrade-roadmap h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upgrade-roadmap p {
    color: #64748b;
    margin-bottom: 2rem;
}

.roadmap-timeline {
    display: grid;
    gap: 2rem;
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.roadmap-year {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.25rem;
    min-width: 80px;
    text-align: center;
}

.roadmap-tech h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.roadmap-tech p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Success stories */
.support-success-stories {
    padding: 5rem 0;
    background: #f8fafc;
}

.support-success-stories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.story-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.story-client {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-logo {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.client-info p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.story-content {
    padding: 2rem;
}

.story-content h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-content p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result {
    background: #dcfce7;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Support contact */
.support-contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

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

.contact-option {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

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

.contact-option h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-option p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.contact-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Support promise */
.support-promise {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.support-promise h4 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.promise-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.promise-item strong {
    color: white;
    margin-bottom: 0.25rem;
}

.promise-item span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .support-phases {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        text-align: left !important;
        max-width: none;
    }
    
    .services-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .service-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .training-types,
    .maintenance-plans,
    .optimization-services {
        grid-template-columns: 1fr;
    }
    
    .support-level {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .portal-features {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .phase-item {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .support-level {
        padding: 1.5rem;
    }
    
    .training-card,
    .plan-card,
    .optimization-card {
        margin: 0;
    }
    
    .story-client {
        flex-direction: column;
        text-align: center;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
}
