* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066FF;
    --secondary-blue: #0080FF;
    --light-blue: #E6F3FF;
    --gradient-blue: linear-gradient(135deg, #0066FF 0%, #00CCFF 100%);
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #888888;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 102, 255, 0.2);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Remove starfield background */
.stars, .stars2, .stars3 {
    display: none;
}

/* Header */
.header {
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-img {
    height: 3.5rem;
    width: auto;
    max-width: 240px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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



.ai-badge {
    background: var(--gradient-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0;
}

/* Common Section Styles */
section {
    width: 100%;
    padding: 4rem 2rem;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

section:nth-child(even) {
    background: var(--light-gray);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="20,20 80,20 80,80 20,80" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    opacity: 0.1;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.title-line {
    display: block;
    color: white;
}

.loading-bar {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 2rem auto;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: loading 3s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Pain Points Section */
.pain-points-section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.pain-point {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.pain-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

.pain-point:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-point h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.pain-point p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Status Quo Section */
.status-quo-section {
    max-width: 1200px;
    margin: 0 auto;
}

.status-quo-section .comparison-table::before {
    display: none;
}

.comparison-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: var(--gradient-blue);
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.header-cell {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cell:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: var(--light-blue);
}

.table-row.highlight {
    background: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
    font-weight: 600;
}

.cell {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
    font-size: 1rem;
}

.cell:last-child {
    border-right: none;
}

/* Approach Section */
.approach-section {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
    text-align: center;
}

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

.timeline-item {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.timeline-item h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
}

.approach-note {
    background: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.approach-note p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Services Section */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

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

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

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
}

/* Stack Section */
.stack-section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.stack-item {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stack-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.stack-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.stack-item span {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    display: block;
}

/* Team Section */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.team-member {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.member-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
    border: 3px solid var(--primary-blue);
    display: block;
}

.member-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.member-link:hover {
    transform: translateY(-2px);
}

.team-member h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.member-link:hover h3 {
    color: var(--secondary-blue);
}

.member-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-company {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.contact-container {
    margin-top: 3rem;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    background: var(--light-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.contact-details h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--gradient-blue);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    max-width: 180px;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 5px;
    display: inline-block;
}

.social-link:hover {
    color: white;
}

/* Remove geometric shapes */
.geometric-shapes {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pain-points-grid, .services-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stack-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .table-header, .table-row {
        grid-template-columns: 220px 160px 180px 280px;
    }
    
    .header-cell, .cell {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
    }
    
    .status-quo-section .comparison-table::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        position: relative;
    }
    
    .logo-img {
        height: 2.5rem;
        max-width: 180px;
        max-height: 45px;
    }
    
    .ai-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .main-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .loading-bar {
        max-width: 300px;
        margin: 1.5rem auto;
    }
    
    /* Mobile-friendly comparison cards */
    .status-quo-section .comparison-table::before {
        display: none;
    }
    
    .comparison-table {
        margin-top: 2rem;
        border-radius: 15px;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        display: block;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        display: block;
        background: var(--white);
        border: 2px solid var(--border-color);
        border-radius: 15px;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .table-row:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary-blue);
    }
    
    .table-row.highlight {
        background: var(--light-blue);
        border: 2px solid var(--primary-blue);
        border-left: 4px solid var(--primary-blue);
        font-weight: 600;
        position: relative;
    }
    
    .table-row.highlight::before {
        content: '★ Recommended';
        position: absolute;
        top: -2px;
        right: -2px;
        background: var(--primary-blue);
        color: white;
        padding: 6px 12px;
        border-radius: 0 13px 0 15px;
        font-size: 0.7rem;
        font-weight: 700;
        z-index: 5;
        white-space: nowrap;
    }
    
    .cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.95rem;
        line-height: 1.4;
        border-right: none;
    }
    
    .cell:last-child {
        border-bottom: none;
    }
    
    .cell:nth-child(1)::before {
        content: 'Approach: ';
        font-weight: 600;
        color: var(--primary-blue);
        margin-right: 0.5rem;
    }
    
    .cell:nth-child(2)::before {
        content: 'Time-to-value: ';
        font-weight: 600;
        color: var(--primary-blue);
        margin-right: 0.5rem;
    }
    
    .cell:nth-child(3)::before {
        content: 'Cost Range: ';
        font-weight: 600;
        color: var(--primary-blue);
        margin-right: 0.5rem;
    }
    
    .cell:nth-child(4)::before {
        content: 'Key Gap: ';
        font-weight: 600;
        color: var(--primary-blue);
        margin-right: 0.5rem;
    }
    
    .cell:nth-child(1) {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        border-bottom: 2px solid var(--primary-blue);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .cell:nth-child(1)::before {
        display: none;
    }
    
    .table-row.highlight .cell:nth-child(1) {
        color: var(--primary-blue);
        font-weight: 800;
    }
    
    /* Grid layouts */
    .pain-points-grid, .services-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stack-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    /* Card improvements */
    .pain-point, .service-card, .team-member, .timeline-item {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .pain-point h3, .service-card h3, .team-member h3, .timeline-item h3 {
        font-size: 1.4rem;
    }
    
    .pain-point p, .service-card p, .timeline-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .stack-item {
        padding: 1.5rem 1rem;
    }
    
    .stack-logo-img {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .stack-item span {
        font-size: 0.9rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-title {
        font-size: 1rem;
    }
    
    .member-company {
        font-size: 0.85rem;
    }
    
    .approach-subtitle {
        font-size: 1.1rem;
    }
    
    .approach-note {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .approach-note p {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        height: 2.3rem;
        max-width: 140px;
        max-height: 40px;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem;
    }
    
    .logo-img {
        height: 2.2rem;
        max-width: 140px;
        max-height: 38px;
    }
    
    .ai-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
    }
    
    section {
        padding: 2rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .main-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-section {
        padding: 2.5rem 0.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .loading-bar {
        max-width: 250px;
        height: 3px;
        margin: 1rem auto;
    }
    
    /* Ultra-mobile cards */
    .pain-point, .service-card, .team-member, .timeline-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .pain-point h3, .service-card h3, .team-member h3, .timeline-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .pain-point p, .service-card p, .timeline-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .pain-icon, .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stack-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stack-logo-img {
        width: 40px;
        height: 40px;
        margin-bottom: 0.6rem;
    }
    
    .stack-item span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .member-title {
        font-size: 0.95rem;
    }
    
    .member-company {
        font-size: 0.8rem;
    }
    
    .approach-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .approach-note {
        padding: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .approach-note p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 2rem 0.8rem;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-logo-img {
        height: 1.8rem;
        max-width: 110px;
        max-height: 32px;
    }
    
    .social-links {
        gap: 1.2rem;
    }
    
    /* Mobile table improvements */
    .comparison-table {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
    
    .table-row {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 12px;
    }
    
    .cell {
        padding: 0.7rem 0;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .cell:nth-child(1) {
        font-size: 1rem;
        padding-bottom: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .cell:nth-child(2)::before,
    .cell:nth-child(3)::before,
    .cell:nth-child(4)::before {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .table-row.highlight::before {
        font-size: 0.6rem;
        padding: 4px 8px;
        top: -2px;
        right: -2px;
        border-radius: 0 12px 0 12px;
        white-space: nowrap;
        overflow: visible;
    }
    
    /* Better touch targets */
    .stack-item, .pain-point, .service-card, .team-member, .timeline-item {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .stack-item:hover, .pain-point:hover, .service-card:hover, 
    .team-member:hover, .timeline-item:hover {
        transform: translateY(-3px);
    }
    
    /* Text adjustments */
    .timeline-item p, .service-card p {
        text-align: left;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        min-width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
} 