h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* AI Section Styling */
.ai-section {
    padding: 120px 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.ai-header {
    text-align: center;
    margin-bottom: 80px;
}

.ai-badge {
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.ai-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 20px;
}

.ai-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hub and Spoke Layout */
.ai-hub-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-hub {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.5);
    z-index: 10;
    /* position: relative; */
}

.central-hub::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
    animation: hub-pulse 3s infinite;
}

@keyframes hub-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Processing Hub Styles */
.processing-hub-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-center-core {
    width: 60px;
    height: 60px;
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.3),
                inset 0 0 15px rgba(124, 77, 255, 0.2);
    animation: hub-breathe 3s ease-in-out infinite;
}

.processing-ring-outer {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px dashed rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    animation: orb-rotate-cw 12s linear infinite;
}

.processing-ring-inner {
    position: absolute;
    width: 85px;
    height: 85px;
    border: 1.5px solid transparent;
    border-top-color: #7c4dff;
    border-radius: 50%;
    animation: orb-rotate-cw 1.5s linear infinite; /* Fast rotation for processing feel */
}

/* Data Particles Animation */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.p1 { animation: particle-orbit 4s linear infinite; }
.p2 { animation: particle-orbit 4s linear infinite 1.3s; }
.p3 { animation: particle-orbit 4s linear infinite 2.6s; }

@keyframes particle-orbit {
    from { transform: rotate(0deg) translateX(55px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(55px) rotate(-360deg); }
}

@keyframes hub-breathe {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; border-color: rgba(168, 85, 247, 0.8); }
}

.hub-ambient-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.15), transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes orb-rotate-cw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Feature Cards Positioning */
.ai-card {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 25px;
    transition: all 0.4s ease;
    z-index: 5;
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
}

.card-top-left { top: 0; left: 0; }
.card-top-center { top: -50px; left: 50%; transform: translateX(-50%); }
.card-top-right { top: 0; right: 0; }
.card-bottom-left { bottom: 0; left: 0; }
.card-bottom-center { bottom: -50px; left: 50%; transform: translateX(-50%); }
.card-bottom-right { bottom: 0; right: 0; }

.ai-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.ai-card h3 .italic-serif {
    font-weight: 400;
}

.ai-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Mini UI Layouts within cards */
.ai-card-preview {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tool-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* Connecting Lines (SVG) */
.ai-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-line {
    display: none; /* Removed static base lines for a cleaner, modern 'energy' look */
}

.ai-line-pulse {
    fill: none;
    stroke: #a855f7;
    stroke-width: 2.5;
    stroke-dasharray: 20 200;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.7));
}

/* Sequential Neural Processing Loop (Request -> Response) */
.flow-in { animation: flow-pulse-single 4s linear infinite; }
.flow-out.delayed { animation: flow-pulse-single 4s linear infinite 2s; } /* Fired after Inbound arrives */

@keyframes flow-pulse-single {
    0% { stroke-dashoffset: 220; opacity: 0; }
    5%, 45% { opacity: 0.9; }
    50%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes energy-bloom {
    0%, 100% { opacity: 0.1; stroke-width: 1.5; }
    50% { opacity: 0.8; stroke-width: 3.5; }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ai-hub-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .central-hub, .ai-lines {
        display: none;
    }
    .ai-card {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
}

/* Promise of Trust Section Styles */
.promise-section {
    padding: 120px 0;
    background-color: #000;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 77, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 80px;
}

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

.promise-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 32px;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, border-color 0.4s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promise-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 255, 136, 0.3);
}

.promise-icon-wrapper {
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
    border-radius: 50%;
}

.promise-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.promise-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.promise-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Typography Helpers - Core Aesthetic */
.italic-serif {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
}

/* CUSTOM SPACING OVERRIDES */
.work-section {
    padding-bottom: 200px !important;
    position: relative;
    z-index: 1;
}

.stack-footer {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
    display: flex;
    justify-content: center;
}

.testimonials-section {
    margin-top: 100px !important;
    padding: 150px 0 !important;
    position: relative;
    z-index: 10;
    background: #fff;
}

/* Video Section High-Fidelity Refinements */
.video-container-wrapper {
    margin-top: 150px;
    width: 100vw !important;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
    margin-left: calc(50% - 50vw);
}

.video-container-main {
    width: 1600px;
    max-width: 90%;
    height: 600px;
    margin: 0 auto;
    border-radius: 40px !important;
    box-shadow: 0 60px 120px rgba(0,0,0,0.4) !important;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: none !important;
}

.video-scroll-trigger {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-center {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.video-overlay-glow {
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%) !important;
}

/* Portfolio / What We Do Styles (Pinned Redesign) */
.portfolio-section {
    padding: 150px 0;
    background: #000;
    color: #fff;
    position: relative;
}

.portfolio-section-header {
    padding-top: 30px;
    margin-bottom: 50px;
}

.portfolio-main-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.portfolio-left-pinned {
    width: 45%;
    height: 60vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    z-index: 10;
}

.service-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-info {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0s, transform 0s; /* Controlled by GSAP */
}

.service-info.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.portfolio-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-top: 0px;
    margin-bottom: 40px;
    overflow: hidden;
    font-weight: 700;
    text-align: left;
}

.pill-badge-green {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-right-scroll {
    width: 55%;
}

.service-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 60px; /* Space between service blocks for clear triggers */
    min-height: 600px;
    align-items: center;
}

.service-cards-row:last-child {
    margin-bottom: 0;
}

.portfolio-card {
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
    background: #111;
    width: 100%;
    transition: transform 0.4s ease;
}

.portfolio-card:nth-child(2) {
    margin-top: 100px; /* Maintain masonry look within row */
}

.pixel-bold-title {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.pixel-bold-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-purple);
    opacity: 0.5;
}

.portfolio-text-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.see-more-link {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

/* Card Backgrounds */
.card-blue { background: #3b82f6; }
.card-orange { background: #f97316; }
.card-green-dark { background: #15803d; }
.card-green-light { background: #a3e635; }
.card-purple { background: #7c3aed; }
.card-yellow { background: #facc15; }

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
}

@media (max-width: 991px) {
    .portfolio-main-container {
        flex-direction: column;
    }
    .portfolio-left-pinned {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        margin-bottom: 50px;
    }
    .portfolio-right-scroll {
        width: 100%;
    }
    .service-cards-row {
        margin-bottom: 100px;
    }
}
.portfolio-footer-cta {
    margin: 100px auto 100px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-book-call {
    padding: 16px 45px;
    background: #7c3aed;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10px;
}

.btn-book-call:hover {
    transform: scale(1.05) translateY(-5px);
    background: #fff;
    color: #7c3aed;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 120px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: var(--text-secondary);
}

.toggle-btn.active {
    background: #6366f1;
    color: #fff;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.save-badge {
    position: absolute;
    top: -25px;
    right: -20px;
    color: #00ff88;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    perspective: 1200px; /* Added for 3D effect */
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, background 0.4s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.15), transparent), 
                rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: #7c3aed;
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
}

.card-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-card .plan-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.price-box {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-box .amount {
    font-size: 3.5rem;
    font-weight: 700;
}

.price-box .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-primary);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #00ff88;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pricing-btn {
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-starter {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-starter:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-featured {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-featured:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
}

/* Comparison Section Styles */
.comparison-section {
    padding: 120px 0;
    background-color: #000;
    position: relative;
}

.comparison-header {
    text-align: center;
    margin-bottom: 80px;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto; /* For mobile scroll */
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 900px; /* To prevent squishing */
}

/* Grid Header */
.comparison-row.header {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row.header .col-title {
    color: rgba(255, 255, 255, 0.5); /* Soft white for labels */
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

.comparison-row.header .col-title:first-child {
    text-align: left;
}

/* Row Styling */
.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    padding: 30px 40px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

/* Design Monks Row Highlight */
.comparison-row.featured {
    background: linear-gradient(90deg, rgba(124, 77, 255, 0.15), rgba(99, 102, 241, 0.1));
    border-radius: 24px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin: 10px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.platform-cell {
    display: flex;
    align-items: center;
    gap: 20px;
}

.platform-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.featured .platform-icon-box {
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 0 20px rgba(124, 77, 255, 0.5);
}

.platform-info h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 5px;
}

.platform-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.4;
}

.status-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.status-check {
    color: #00ff88;
}

.status-cross {
    color: #ff4d4d;
    opacity: 0.5;
}

/* Featured specific overrides */
.featured .status-check {
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

@media (max-width: 900px) {
    .comparison-grid {
        min-width: 700px;
    }
    
    .comparison-row.header, .comparison-row {
        grid-template-columns: 1.5fr repeat(5, 1fr);
        padding: 20px;
    }

    .platform-info p {
        display: none; /* Hide description on mobile to save space */
    }
}

@media (max-width: 600px) {
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .price-box .amount {
        font-size: 2.5rem;
    }

    .comparison-grid {
        min-width: 600px;
    }
    
    .platform-info h4 {
        font-size: 1rem;
    }
}

/* AI Hub Mobile Fixes */
@media (max-width: 992px) {
    .ai-hub-wrapper {
        height: auto;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .central-hub, .ai-lines {
        display: none !important;
    }

    .ai-card {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        height: auto !important;
        min-height: 300px;
    }
    
    .ai-custom-title {
        font-size: 2rem;
    }
}
