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

:root {
    --primary: #ffbb00;
    --primary-dark: #e6a800;
    --primary-light: #ffd54f;
    --primary-lighter: #fff9e6;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 20px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-900);
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--gray-900);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 187, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-lighter) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    right: -100px;
    animation-delay: 8s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: 40%;
    right: 15%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

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

.coming-soon-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--gray-900);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 16px rgba(255, 187, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.coming-soon-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple 3s infinite;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--gray-600);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

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

/* Mouse Light Tracking */
.mouse-light {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.15) 0%, rgba(255, 187, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    filter: blur(60px);
    opacity: 0;
}

.mouse-light.active {
    opacity: 1;
}

/* Features Visual Section */
.features-visual {
    padding: 120px 0;
    background: #ffffff;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-visual-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1.5px solid rgba(255, 187, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-visual-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-visual-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--primary-lighter) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(255, 187, 0, 0.15);
}

.feature-visual-item:hover::before {
    opacity: 1;
}

.feature-visual-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-visual-icon svg {
    width: 100%;
    height: 100%;
}

.feature-visual-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.3px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--gray-900);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-900);
    letter-spacing: -1.5px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 48px;
    color: var(--gray-800);
    font-weight: 400;
}

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

.cta .btn-primary {
    background-color: var(--gray-900);
    color: white;
}

.cta .btn-primary:hover {
    background-color: var(--gray-800);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta .btn-outline {
    border-color: var(--gray-900);
    color: var(--gray-900);
    background: transparent;
}

.cta .btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--gray-50);
    color: var(--gray-600);
    padding: 60px 0 32px;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    color: var(--gray-900);
}

.footer-description {
    margin-top: 12px;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px;
}

.footer-contact {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.contact-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--primary-dark);
    transform: translateX(2px);
}

.contact-email::before {
    content: '✉';
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.built-by {
    font-size: 13px;
    color: var(--gray-500);
}

.shipai-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.shipai-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.shipai-link:hover {
    color: var(--primary-dark);
}

.shipai-link:hover::after {
    width: 100%;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-content {
        padding: 0 24px;
        justify-content: center;
    }
    
    .navbar {
        padding: 18px 0;
        backdrop-filter: blur(30px);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .nav-buttons {
        display: none;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .logo-text {
        font-size: 21px;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: 85vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        margin-bottom: 0;
        position: relative;
        z-index: 2;
    }

    .coming-soon-badge {
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 28px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(255, 187, 0, 0.25);
        letter-spacing: 0.8px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
        line-height: 1.6;
        color: var(--gray-700);
        font-weight: 400;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
    }

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

    .section-title {
        font-size: 36px;
        margin-bottom: 14px;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 17px;
        color: var(--gray-600);
    }

    .features-visual {
        padding: 90px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .feature-visual-item {
        padding: 32px 20px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
        backdrop-filter: blur(10px);
        border: 1.5px solid rgba(255, 187, 0, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .feature-visual-item:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, var(--primary-lighter) 0%, rgba(255, 255, 255, 0.9) 100%);
    }
    
    .feature-visual-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
        filter: drop-shadow(0 4px 8px rgba(255, 187, 0, 0.2));
    }
    
    .feature-visual-item h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--gray-800);
    }

    .cta {
        padding: 90px 0;
    }

    .cta-title {
        font-size: 36px;
        margin-bottom: 18px;
        letter-spacing: -1px;
    }

    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 36px;
        opacity: 0.95;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .cta-buttons .btn {
        flex: 1;
        min-width: 140px;
    }

    .footer {
        padding: 60px 0 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        margin-bottom: 36px;
    }

    .footer-links {
        justify-content: center;
        gap: 28px;
        flex-wrap: wrap;
    }
    
    /* Disable mouse light on mobile */
    .mouse-light {
        display: none;
    }
    
    /* Enhanced gradient orbs for mobile */
    .orb-1 {
        width: 350px;
        height: 350px;
        opacity: 0.35;
    }
    
    .orb-2 {
        width: 280px;
        height: 280px;
        opacity: 0.3;
    }
    
    .orb-3 {
        width: 220px;
        height: 220px;
        opacity: 0.25;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-content {
        padding: 0 20px;
        justify-content: center;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
        background: radial-gradient(circle at top center, var(--primary-lighter) 0%, #ffffff 60%);
    }

    .hero-content {
        margin-bottom: 0;
    }

    .coming-soon-badge {
        font-size: 10px;
        padding: 7px 16px;
        margin-bottom: 20px;
        letter-spacing: 1px;
        animation: pulse 2s infinite, glow 2s ease-in-out infinite;
    }
    
    @keyframes glow {
        0%, 100% {
            box-shadow: 0 4px 16px rgba(255, 187, 0, 0.3);
        }
        50% {
            box-shadow: 0 6px 24px rgba(255, 187, 0, 0.5);
        }
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -1.2px;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.5;
        color: var(--gray-600);
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        animation: fadeInUp 0.8s ease-out 0.4s backwards;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 15px 24px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 14px;
        min-width: 0;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        box-shadow: 0 6px 20px rgba(255, 187, 0, 0.35);
        animation: buttonPulse 2s ease-in-out infinite;
    }
    
    @keyframes buttonPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.02);
        }
    }

    .section-header {
        margin-bottom: 32px;
        position: relative;
    }
    
    .section-header::after {
        content: '';
        position: absolute;
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        border-radius: 2px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 10px;
        letter-spacing: -0.8px;
        line-height: 1.2;
        background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        color: var(--gray-600);
    }

    .features-visual {
        padding: 50px 0;
        background: linear-gradient(180deg, #ffffff 0%, var(--primary-lighter) 100%);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-visual-item {
        padding: 24px 16px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
        border: 1.5px solid rgba(255, 187, 0, 0.25);
        box-shadow: 0 8px 24px rgba(255, 187, 0, 0.08);
        position: relative;
        overflow: hidden;
    }
    
    .feature-visual-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .feature-visual-item:active::after {
        transform: scaleX(1);
    }
    
    .feature-visual-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
        filter: drop-shadow(0 4px 12px rgba(255, 187, 0, 0.3));
        animation: iconFloat 3s ease-in-out infinite;
    }
    
    @keyframes iconFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }
    
    .feature-visual-item:nth-child(1) .feature-visual-icon { animation-delay: 0s; }
    .feature-visual-item:nth-child(2) .feature-visual-icon { animation-delay: 0.2s; }
    .feature-visual-item:nth-child(3) .feature-visual-icon { animation-delay: 0.4s; }
    .feature-visual-item:nth-child(4) .feature-visual-icon { animation-delay: 0.6s; }
    .feature-visual-item:nth-child(5) .feature-visual-icon { animation-delay: 0.8s; }
    .feature-visual-item:nth-child(6) .feature-visual-icon { animation-delay: 1s; }
    .feature-visual-item:nth-child(7) .feature-visual-icon { animation-delay: 1.2s; }
    .feature-visual-item:nth-child(8) .feature-visual-icon { animation-delay: 1.4s; }
    
    .feature-visual-item h3 {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: -0.1px;
        line-height: 1.3;
    }

    .cta {
        padding: 60px 0;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        opacity: 0.95;
        z-index: 0;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 14px;
        line-height: 1.2;
        letter-spacing: -0.8px;
        animation: fadeInUp 0.6s ease-out;
    }

    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.5;
        opacity: 0.95;
        animation: fadeInUp 0.6s ease-out 0.2s backwards;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        animation: fadeInUp 0.6s ease-out 0.4s backwards;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 15px 24px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 14px;
        min-width: 0;
    }
    
    .cta .btn-primary {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    }
    
    .cta .btn-outline {
        border-color: rgba(0, 0, 0, 0.3);
        color: var(--gray-900);
        background: rgba(255, 255, 255, 0.1);
    }

    .footer {
        padding: 50px 0 24px;
    }

    .footer-content {
        margin-bottom: 32px;
        gap: 28px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-description {
        font-size: 14px;
        margin-top: 12px;
        line-height: 1.6;
        color: var(--gray-500);
    }
    
    .footer-contact {
        margin-top: 16px;
        padding-top: 14px;
    }
    
    .contact-label {
        font-size: 12px;
    }
    
    .contact-email {
        font-size: 14px;
    }

    .footer-links {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-link {
        font-size: 14px;
        font-weight: 500;
        padding: 8px 0;
    }

    .footer-bottom {
        padding-top: 28px;
        font-size: 12px;
        color: var(--gray-500);
        gap: 6px;
    }
    
    .built-by {
        font-size: 12px;
    }
    
    /* Enhanced mobile orbs with animation */
    .orb-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
        opacity: 0.4;
        animation: float 15s infinite ease-in-out;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
        bottom: -80px;
        right: -80px;
        opacity: 0.35;
        animation: float 18s infinite ease-in-out;
    }
    
    .orb-3 {
        width: 200px;
        height: 200px;
        top: 40%;
        right: -60px;
        opacity: 0.3;
        animation: float 20s infinite ease-in-out;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px; /* Better touch target */
        -webkit-tap-highlight-color: rgba(255, 187, 0, 0.25);
        transition: all 0.2s ease;
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    .feature-visual-item {
        min-height: 140px;
        -webkit-tap-highlight-color: rgba(255, 187, 0, 0.15);
        cursor: pointer;
    }
    
    .feature-visual-item:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, var(--primary-lighter) 0%, rgba(255, 255, 255, 0.95) 100%);
    }
    
    /* Disable hover effects on touch devices */
    .feature-visual-item:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .footer-link {
        -webkit-tap-highlight-color: rgba(255, 187, 0, 0.15);
        padding: 8px 12px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }
    
    .footer-link:active {
        background: rgba(255, 187, 0, 0.1);
    }
    
    /* Better visual feedback for touch */
    .hero-buttons .btn:active,
    .cta-buttons .btn:active {
        transform: scale(0.96);
    }
}

/* Prevent text size adjustment on iOS */
@media screen and (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
