/* ============================================
   WORDPRESS MAINTENANCE SERVICE PAGE STYLES
   ============================================ */

/* Maintenance Hero */
.maintenance-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 24px 80px;
    overflow: hidden;
    background: var(--hero-bg);
}

.maintenance-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.maintenance-hero-bg .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(103, 34, 181, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 34, 181, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.maintenance-hero-bg .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.maintenance-hero-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.maintenance-hero-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--success);
    bottom: -50px;
    left: -50px;
}

.maintenance-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--success);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.maintenance-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb [aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-sep {
    opacity: 0.5;
}

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

/* Maintenance Features — GoDaddy vs WordPress comparison */
.maintenance-features {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.maintenance-features::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(103, 34, 181, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

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

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    background: rgba(103, 34, 181, 0.08);
    border: 1px solid rgba(103, 34, 181, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-large {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    font-weight: 700;
    color: var(--success);
    flex-shrink: 0;
}

.vs-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    margin-top: 56px;
    position: relative;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.vs-panel {
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: var(--shadow-sm);
}

.vs-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.35s ease;
}

.vs-godaddy {
    background: linear-gradient(160deg, rgba(239, 68, 68, 0.07), rgba(239, 68, 68, 0.015));
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.vs-godaddy::before { background: linear-gradient(90deg, #ef4444, rgba(239, 68, 68, 0.2)); }

.vs-wp {
    background: linear-gradient(160deg, rgba(16, 185, 129, 0.08), rgba(34, 197, 94, 0.015));
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-left: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.vs-wp::before { background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), #10b981); }

.vs-panel:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    z-index: 3;
}

.vs-godaddy:hover { border-color: rgba(239, 68, 68, 0.45); }
.vs-wp:hover { border-color: rgba(16, 185, 129, 0.5); }

.vs-panel-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--border-color);
}

.vs-logo {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.vs-logo::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.vs-godaddy .vs-logo::before { background: #ef4444; box-shadow: 0 0 12px rgba(239, 68, 68, 0.6); }
.vs-wp .vs-logo::before { background: #10b981; box-shadow: 0 0 12px rgba(16, 185, 129, 0.6); }

.vs-godaddy .vs-logo { color: #ef4444; }
.vs-wp .vs-logo { color: #10b981; }

.vs-tag {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: var(--font-mono);
}

.vs-tag-bad { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.vs-tag-good { background: rgba(16, 185, 129, 0.14); color: #10b981; }

.vs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.vs-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 1px;
    transition: transform 0.3s ease;
}

.vs-list li:hover .vs-icon { transform: scale(1.15); }

.vs-x {
    background: rgba(239, 68, 68, 0.14);
    color: #ef4444;
}

.vs-check {
    background: rgba(16, 185, 129, 0.16);
    color: #10b981;
}

.vs-center {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.vs-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 84px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 22px 14px;
    box-shadow: var(--shadow-lg);
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    will-change: width, padding, gap;
    transition:
        width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        gap 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.vs-arrow svg {
    flex-shrink: 0;
    background: var(--gradient-1);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(103, 34, 181, 0.35);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.vs-center:hover .vs-arrow {
    flex-direction: row;
    width: 232px;
    border-radius: 100px;
    padding: 16px 28px;
    gap: 12px;
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 14px 30px rgba(103, 34, 181, 0.3);
}

.vs-center:hover .vs-arrow svg {
    transform: translateX(2px) scale(0.92);
}

.vs-center:hover .vs-arrow-label {
    writing-mode: horizontal-tb;
    letter-spacing: 0.06em;
}

.vs-arrow-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
    color: var(--text-muted);
    transition: letter-spacing 0.5s ease, color 0.4s ease;
}

.vs-cta {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.vs-cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .vs-compare {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 620px;
    }

    .vs-godaddy {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-right: 1px solid rgba(239, 68, 68, 0.22);
        border-bottom: none;
    }

    .vs-wp {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border-left: 1px solid rgba(16, 185, 129, 0.28);
        border-top: none;
    }

    .vs-panel::before { height: 100%; width: 4px; }

    .vs-godaddy::before { background: linear-gradient(180deg, #ef4444, rgba(239, 68, 68, 0.2)); }
    .vs-wp::before { background: linear-gradient(180deg, rgba(16, 185, 129, 0.2), #10b981); }

    .vs-center {
        padding: 14px 0;
    }

    .vs-arrow {
        flex-direction: row;
        width: auto;
        border-radius: 100px;
        padding: 14px 24px;
        gap: 12px;
    }

    .vs-arrow svg {
        width: 36px;
        height: 36px;
        padding: 7px;
    }

    .vs-arrow-label {
        writing-mode: horizontal-tb;
    }
}

@media (max-width: 480px) {
    .vs-panel {
        padding: 28px 22px;
    }

    .vs-logo {
        font-size: 1.45rem;
    }

    .vs-list li {
        font-size: 0.9rem;
    }

    .vs-compare {
        margin-top: 40px;
    }

    .vs-cta {
        margin-top: 40px;
    }
}

/* Content Updates Banner */
.content-updates-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(103, 34, 181, 0.03) 0%, rgba(6, 182, 212, 0.02) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.banner-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.banner-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.banner-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.banner-content strong {
    color: var(--primary);
}

/* Book a Meeting Section */
.book-meeting {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #4a1685 0%, #6722B5 55%, #8a4fd4 100%);
}

.book-meeting-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.book-meeting-bg .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.book-meeting-bg .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}

.book-meeting-bg .shape-1 {
    width: 420px;
    height: 420px;
    background: #f0c040;
    top: -140px;
    right: -80px;
}

.book-meeting-bg .shape-2 {
    width: 360px;
    height: 360px;
    background: #06b6d4;
    bottom: -160px;
    left: -100px;
}

.book-meeting-bg .shape-3 {
    width: 260px;
    height: 260px;
    background: #ff6ad5;
    top: 40%;
    left: 45%;
}

.book-meeting-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}

/* Media / Avatar */
.book-meeting-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.book-meeting-avatar {
    position: relative;
    width: 220px;
    height: 220px;
}

.book-meeting-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.book-meeting-avatar .avatar-ring {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    z-index: 1;
    animation: ringSpin 18s linear infinite;
}

.book-meeting-avatar .avatar-ring-2 {
    inset: -34px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.15);
    animation: ringSpin 28s linear infinite reverse;
}

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

.book-meeting-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.45);
    color: var(--dark);
}

.book-meeting-chip strong {
    font-weight: 800;
}

.book-meeting-chip .chip-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.book-meeting-chip .chip-icon {
    color: #f0c040;
    font-size: 1.1rem;
}

.book-meeting-chip .chip-num {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.chip-rating {
    top: 24px;
    left: -10px;
    animation: chipFloat 5s ease-in-out infinite;
}

.chip-sites {
    bottom: 24px;
    right: -10px;
    animation: chipFloat 5s ease-in-out infinite 1.2s;
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Body */
.book-meeting-body .hero-badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    margin-bottom: 16px;
}

.book-meeting-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.book-meeting-body .badge-dot {
    background: #4ade80;
}

.book-meeting-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
}

.book-meeting-title .title-accent {
    background: linear-gradient(135deg, #fde68a 0%, #f0c040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-meeting-sub {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
    max-width: 540px;
}

.book-meeting-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.book-meeting-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.book-meeting-points svg {
    color: #4ade80;
    flex-shrink: 0;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 50%;
    padding: 2px;
    box-sizing: content-box;
}

.book-meeting-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.book-meeting-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Light button for contrast on gradient */
.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-dark);
    border: none;
    font-weight: 700;
    padding: 16px 30px;
    border-radius: 100px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.45);
}

.btn-light:hover {
    transform: translateY(-3px);
    background: #fde68a;
    color: var(--primary-dark);
    box-shadow: 0 18px 38px -12px rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
    .book-meeting-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .book-meeting-media {
        min-height: 260px;
    }

    .book-meeting-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .book-meeting-points {
        display: inline-flex;
        text-align: left;
    }

    .book-meeting-actions {
        justify-content: center;
    }

    .chip-rating { left: 0; }
    .chip-sites { right: 0; }
}

@media (max-width: 480px) {
    .book-meeting-avatar {
        width: 220px;
        height: 220px;
    }

    .book-meeting-chip {
        padding: 10px 14px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(103, 34, 181, 0.03) 0%, rgba(6, 182, 212, 0.02) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-1);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    align-self: flex-start;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    align-self: flex-end;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--success);
}

.pricing-features li.not-included {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.not-included svg {
    color: var(--text-muted);
}

/* ============================================
   HOW IT WORKS - LEFT/RIGHT LAYOUT
   ============================================ */

.how-it-works-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.hiw-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.hiw-left {
    position: sticky;
    top: 120px;
}

.hiw-left-inner .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(103, 34, 181, 0.08);
    border: 1px solid rgba(103, 34, 181, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hiw-left-inner .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hiw-left-inner .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hiw-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(103, 34, 181, 0.25);
}

.hiw-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(103, 34, 181, 0.35);
}

.hiw-cta svg {
    transition: transform 0.3s ease;
}

.hiw-cta:hover svg {
    transform: translateX(4px);
}

/* Right: Timeline */
.hiw-timeline {
    position: relative;
    padding-left: 40px;
}

.hiw-step {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
}

.hiw-step:last-child {
    margin-bottom: 0;
}

.hiw-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    position: relative;
    z-index: 2;
}

.hiw-step-dot {
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    background: var(--bg-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.hiw-step:hover .hiw-step-dot {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(103, 34, 181, 0.15);
}

.hiw-step-line {
    width: 2px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, var(--border-color), transparent);
    margin-top: 8px;
}

.hiw-step:last-child .hiw-step-line {
    display: none;
}

.hiw-step-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 28px;
    transition: var(--transition);
}

.hiw-step-content:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.hiw-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.hiw-step-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hiw-step-badge {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(103, 34, 181, 0.08);
    border: 1px solid rgba(103, 34, 181, 0.15);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hiw-badge-weekly {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.15);
    color: var(--info);
}

.hiw-badge-ongoing {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.hiw-badge-monthly {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.hiw-badge-request {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.hiw-step-content > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.hiw-step-number {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-mono);
}

/* ============================================
   PACKAGES SECTION - RADIO STYLE SELECTOR
   ============================================ */

.packages-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pkg-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Left: Plan Selector */
.pkg-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkg-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.pkg-option:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.pkg-option.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(103, 34, 181, 0.05) 0%, rgba(6, 182, 212, 0.03) 100%);
    box-shadow: 0 4px 20px rgba(103, 34, 181, 0.12);
}

.pkg-option-radio {
    flex-shrink: 0;
    padding-top: 4px;
}

.pkg-radio-circle {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pkg-option.active .pkg-radio-circle {
    border-color: var(--primary);
    background: var(--primary);
}

.pkg-radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.pkg-option.active .pkg-radio-circle::after {
    opacity: 1;
    transform: scale(1);
}

.pkg-option-info {
    flex: 1;
    min-width: 0;
}

.pkg-option-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.pkg-option-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pkg-option-price {
    text-align: right;
    flex-shrink: 0;
    padding-top: 4px;
}

.pkg-price-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.pkg-price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Right: Plan Details */
.pkg-details {
    position: sticky;
    top: 120px;
}

.pkg-detail-panel {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.pkg-detail-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.pkg-detail-panel h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.pkg-detail-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.pkg-detail-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.pkg-detail-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pkg-detail-list li svg {
    flex-shrink: 0;
    color: var(--success);
}

.pkg-detail-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.pkg-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(103, 34, 181, 0.25);
}

.pkg-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(103, 34, 181, 0.35);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(103, 34, 181, 0.08);
    border: 1px solid rgba(103, 34, 181, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.process-arrow {
    color: var(--primary);
    flex-shrink: 0;
}

.process-arrow svg {
    animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(5px); }
}

/* Maintenance CTA */
.maintenance-cta {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.maintenance-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.maintenance-cta .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.maintenance-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.maintenance-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

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

/* Animation for fadeInUp */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .migration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .migration-card-body {
        padding: 24px;
    }

    .migration-features {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    /* How It Works responsive */
    .hiw-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hiw-left {
        position: relative;
        top: 0;
    }

    .hiw-left-inner .section-title {
        font-size: 1.75rem;
    }

    .hiw-step-number {
        display: none;
    }

    /* Packages responsive */
    .pkg-layout {
        grid-template-columns: 1fr;
    }

    .pkg-details {
        position: relative;
        top: 0;
    }

    .pkg-detail-panel {
        margin-top: 24px;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .maintenance-hero {
        min-height: auto;
        padding: 120px 16px 60px;
    }

    .vs-panel {
        padding: 28px 22px;
    }

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

    .feature-card {
        padding: 28px 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .process-step {
        padding: 32px 20px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    /* How It Works mobile */
    .hiw-timeline {
        padding-left: 0;
    }

    .hiw-step {
        gap: 16px;
    }

    .hiw-step-content {
        padding: 20px;
    }

    .hiw-step-header h3 {
        font-size: 1rem;
    }

    /* Packages mobile */
    .pkg-option {
        padding: 18px;
        gap: 12px;
    }

    .pkg-option-info h4 {
        font-size: 1rem;
    }

    .pkg-option-info p {
        font-size: 0.8rem;
    }

    .pkg-price-amount {
        font-size: 1.25rem;
    }

    .pkg-detail-panel {
        padding: 28px;
    }

    .pkg-detail-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .maintenance-hero-title {
        font-size: 2rem;
    }

    .banner-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* How It Works small mobile */
    .hiw-step {
        flex-direction: column;
        gap: 12px;
    }

    .hiw-step-marker {
        flex-direction: row;
        width: 100%;
        align-items: center;
        gap: 12px;
    }

    .hiw-step-line {
        width: auto;
        height: 2px;
        flex: 1;
        min-height: auto;
        margin-top: 0;
        background: linear-gradient(to right, var(--border-color), transparent);
    }

    /* Packages small mobile */
    .pkg-option {
        flex-wrap: wrap;
    }

    .pkg-option-price {
        width: 100%;
        text-align: left;
        padding-top: 8px;
        padding-left: 38px;
    }

    .pkg-detail-panel {
        padding: 24px 20px;
    }
}

/* ============================================
   MIGRATION STEPS (Alternating Timeline)
   ============================================ */
.migration-steps {
    padding: 100px 0;
}

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

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0.35;
    border-radius: 3px;
}

.step-item {
    position: relative;
    width: 50%;
    padding: 0 56px 56px;
    box-sizing: border-box;
}

.step-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.step-item:nth-child(even) {
    left: 50%;
}

.step-node {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(103, 34, 181, 0.55);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-item:nth-child(odd) .step-node {
    right: -42px;
}

.step-item:nth-child(even) .step-node {
    left: -42px;
}

.step-item:hover .step-node {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 16px 34px -8px rgba(103, 34, 181, 0.72);
}

.step-node svg {
    width: 36px;
    height: 36px;
}

.step-card {
    display: inline-block;
    width: 100%;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.step-index {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

.step-pill {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(103, 34, 181, 0.12);
    color: var(--primary);
    white-space: nowrap;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .migration-steps {
        padding: 70px 0;
    }

    .steps-timeline {
        margin-top: 44px;
    }

    .steps-timeline::before {
        left: 31px;
        transform: none;
    }

    .step-item,
    .step-item:nth-child(odd),
    .step-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 30px 74px;
    }

    .step-item:nth-child(odd) .step-node,
    .step-item:nth-child(even) .step-node {
        left: 0;
        right: auto;
        width: 62px;
        height: 62px;
    }

    .step-node svg {
        width: 28px;
        height: 28px;
    }

    .step-card {
        padding: 20px 22px;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .steps-timeline::before {
        left: 27px;
    }

    .step-item,
    .step-item:nth-child(odd),
    .step-item:nth-child(even) {
        padding-left: 64px;
        padding-bottom: 24px;
    }

    .step-item:nth-child(odd) .step-node,
    .step-item:nth-child(even) .step-node {
        width: 54px;
        height: 54px;
    }

    .step-node svg {
        width: 24px;
        height: 24px;
    }

    .step-card-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ============================================
   MIGRATION PORTFOLIO SECTION
   ============================================ */
.migration-portfolio {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.migration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.migration-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform: translateZ(0);
}

.migration-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(103, 34, 181, 0.12);
}

.migration-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.migration-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.migration-card:hover .migration-card-image img {
    transform: scale(1.08);
}

.migration-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(103, 34, 181, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.migration-arrow {
    opacity: 0.85;
    font-weight: 400;
}

.migration-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.migration-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(103, 34, 181, 0.08);
    border: 1px solid rgba(103, 34, 181, 0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    width: fit-content;
}

.migration-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.migration-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}

.migration-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.migration-features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.35;
}

.migration-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.8rem;
}

.migration-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.migration-tech span {
    padding: 3px 10px;
    background: var(--bg-secondary);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.migration-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.migration-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.migration-link svg {
    transition: transform 0.3s ease;
}

.migration-link:hover svg {
    transform: translateX(3px);
}

/* ============================================
   MIGRATION TESTIMONIALS (Scrolling Marquee)
   ============================================ */
.migration-testimonials {
    padding: 100px 0;
    overflow: hidden;
}

.migration-testimonials .testimonials-viewport {
    position: relative;
    margin-top: 56px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.migration-testimonials .testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 8px 0;
    animation: scrollTestimonials 38s linear infinite;
    will-change: transform;
}

.migration-testimonials .testimonials-viewport:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.migration-testimonials .testimonial-card {
    position: relative;
    flex: 0 0 360px;
    max-width: 360px;
    padding-top: 44px;
}

.testimonial-quote {
    position: absolute;
    top: 6px;
    left: 24px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.16;
    pointer-events: none;
}

.migration-testimonials .testimonial-stars {
    position: relative;
    z-index: 1;
}

.migration-testimonials .testimonial-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .migration-testimonials {
        padding: 70px 0;
    }
    .migration-testimonials .testimonial-card {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .migration-portfolio {
        padding: 70px 0;
    }

    .migration-card-body {
        padding: 20px;
    }

    .migration-features {
        grid-template-columns: 1fr;
    }

    .migration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .migration-testimonials .testimonial-card {
        flex: 0 0 260px;
        max-width: 260px;
    }

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

/* ============================================
   FAQ SECTION (native accordion)
   ============================================ */
.migration-faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-list {
    max-width: 820px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
}

.faq-answer {
    padding: 0 26px 24px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.98rem;
}

.faq-answer p { margin: 0; }

@media (max-width: 600px) {
    .faq-question {
        font-size: 0.98rem;
        padding: 18px 20px;
    }
    .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ============================================
   LOAD & HOVER ANIMATIONS
   ============================================ */

/* Hero entrance (triggered after loader hides) */
body.loaded .maintenance-hero-content .hero-badge {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both 0.15s;
}
body.loaded .maintenance-hero-content .title-line {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.loaded .maintenance-hero-content .title-line:nth-child(1) { animation-delay: 0.30s; }
body.loaded .maintenance-hero-content .title-line:nth-child(2) { animation-delay: 0.48s; }
body.loaded .maintenance-hero-content .maintenance-hero-subtitle {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both 0.66s;
}
body.loaded .maintenance-hero-content .hero-cta {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both 0.82s;
}

/* Floating background shapes */
.maintenance-hero-bg .shape-1 {
    animation: float 9s ease-in-out infinite;
}
.maintenance-hero-bg .shape-2 {
    animation: float 11s ease-in-out infinite reverse;
}

/* Scroll reveal (hidden only when JS is active, like portfolio) */
.js .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--rd, 0s),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--rd, 0s);
    will-change: opacity, transform;
}

.js .reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.pricing-grid .pricing-card:nth-child(1) { --rd: 0.08s; }
.pricing-grid .pricing-card:nth-child(2) { --rd: 0.18s; }
.pricing-grid .pricing-card:nth-child(3) { --rd: 0.28s; }

.steps-timeline .step-item:nth-child(1) { --rd: 0.05s; }
.steps-timeline .step-item:nth-child(2) { --rd: 0.13s; }
.steps-timeline .step-item:nth-child(3) { --rd: 0.21s; }
.steps-timeline .step-item:nth-child(4) { --rd: 0.29s; }
.steps-timeline .step-item:nth-child(5) { --rd: 0.37s; }

.testimonials-grid .testimonial-card:nth-child(1) { --rd: 0.08s; }
.testimonials-grid .testimonial-card:nth-child(2) { --rd: 0.18s; }
.testimonials-grid .testimonial-card:nth-child(3) { --rd: 0.28s; }

/* Pricing card hover glow */
.pricing-card {
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 24px 48px -16px rgba(103, 34, 181, 0.4);
}
.pricing-card.featured {
    animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Step node pulse ring */
.step-node::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: nodePulse 2.4s ease-out infinite;
}
@keyframes nodePulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Keep hover snappy (override reveal-up's slower transition) */
.pricing-card:hover,
.step-card:hover,
.testimonial-card:hover {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

/* Pause floating on hover so lift shows */
.pricing-card.featured:hover {
    animation-play-state: paused;
}

/* Button shine sweep */
.btn {
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.btn:hover::after {
    left: 130%;
}

/* Testimonial avatar spin-in on hover */
.testimonial-card .author-avatar {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-card:hover .author-avatar {
    transform: scale(1.12) rotate(6deg);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .pricing-card,
    .step-node,
    .btn,
    .maintenance-hero-bg .shape {
        animation: none !important;
        transition: none !important;
    }
    .reveal-up {
        opacity: 1;
        transform: none;
    }
    body.loaded .maintenance-hero-content * {
        animation: none !important;
    }
}

/* ============================================
   ANCHOR OFFSET & SMALL-SCREEN REFINEMENTS
   ============================================ */

/* Keep fixed navbar from covering section targets */
.maintenance-features,
.migration-portfolio,
.migration-steps,
.pricing-section,
.maintenance-cta {
    scroll-margin-top: 90px;
}

@media (max-width: 600px) {
    .maintenance-hero {
        padding: 120px 20px 60px;
    }

    .maintenance-hero-subtitle br {
        display: none;
    }

    .maintenance-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 4px;
    }

    .vs-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .vs-cta-note {
        font-size: 0.78rem;
    }

    .book-meeting-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .book-meeting-actions .btn-light,
    .book-meeting-actions .btn-whatsapp,
    .book-meeting-actions .btn-white {
        width: 100%;
        justify-content: center;
    }

    .book-meeting-chip {
        padding: 10px 14px;
    }

    .migration-card-body h3 {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 14px;
    }

    .vs-panel {
        padding: 24px 18px;
    }

    .vs-list li {
        font-size: 0.85rem;
    }

    .migration-testimonials .testimonial-card {
        flex: 0 0 240px;
        max-width: 240px;
    }
}
