/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2D3447;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1160px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 2px 0 rgba(26, 27, 30, 0.08), 0 2px 4px 0 rgba(34, 36, 40, 0.06), 0 4px 6px 0 rgba(60, 63, 73, 0.04);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-primary-button {
    display: inline-flex;
    padding: 8px 8px 8px 16px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid #5235EF;
    background: linear-gradient(180deg, #5235EF 0%, #5235EF 0%, #8069FD 98%, #816AFD 100%, #8771FF 100%);
    box-shadow: 0 4px 10px 0 rgba(82, 53, 239, 0.15);
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-secondary-button {
    display: inline-flex;
    padding: 8px 8px 8px 16px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: white;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    color: #374151;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-primary-button:hover {
    background: linear-gradient(0deg, #5235EF 0%, #5235EF 0%, #8069FD 98%, #816AFD 100%, #8771FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(82, 53, 239, 0.30);
}

.nav-primary-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px 0 rgba(82, 53, 239, 0.25);
}

.nav-primary-button img {
    transition: transform 0.3s ease;
}

.nav-primary-button:hover img {
    transform: translateX(2px);
}

.nav-secondary-button:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}

.nav-secondary-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
}

.nav-secondary-button img {
    filter: invert(35%) sepia(7%) saturate(1059%) hue-rotate(181deg) brightness(94%) contrast(88%);
    transition: transform 0.3s ease;
}

.nav-secondary-button:hover img {
    filter: invert(25%) sepia(10%) saturate(800%) hue-rotate(181deg) brightness(85%) contrast(95%);
    transform: translateX(2px);
}

.nav-logo h2 {
    color: #2563EB;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1C1C1E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5C6DBE;
}

.cta-button {
    background: #F3A734;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #F8C742;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(45deg, white 30%, rgba(232, 180, 203, 0.4) 40%, #E8B4CB 50%, #D8A4D8 65%, #B89CE8 80%, #7FB3E3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 2.125rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    padding: 13px 11px 13px 29px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid #5235EF;
    background: linear-gradient(180deg, #5235EF 0%, #5235EF 0%, #8069FD 98%, #816AFD 100%, #8771FF 100%);
    box-shadow: 0 4px 10px 0 rgba(82, 53, 239, 0.20);
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: linear-gradient(0deg, #5235EF 0%, #5235EF 0%, #8069FD 98%, #816AFD 100%, #8771FF 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px 0 rgba(82, 53, 239, 0.25);
}

.secondary-button {
    display: inline-flex;
    padding: 13px 11px 13px 29px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid #5235EF;
    background: white;
    box-shadow: 0 4px 10px 0 rgba(82, 53, 239, 0.20);
    color: #5235EF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.secondary-button img {
    filter: invert(24%) sepia(77%) saturate(6847%) hue-rotate(243deg) brightness(86%) contrast(94%);
    transition: transform 0.3s ease;
}

.secondary-button:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}

.secondary-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
}

.secondary-button:hover img {
    filter: invert(25%) sepia(10%) saturate(800%) hue-rotate(181deg) brightness(85%) contrast(95%);
    transform: translateX(2px);
}

/* Hero Image Placeholder */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 700px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: #64748b;
}

.placeholder-content svg {
    margin-bottom: 1rem;
    color: #94a3b8;
}

.placeholder-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.placeholder-content small {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Section Styles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #2D3447;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    margin: 0 72px;
}

#features {
    background: #ffffff;
    margin: 0 16px;
}

/* Feature pill-box tags */
.feature-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.pill-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-tag:first-child {
    background: linear-gradient(135deg, #E8B4CB, #D8A4D8);
    color: white;
}

.pill-tag:last-child {
    background: linear-gradient(135deg, #B89CE8, #7FB3E3);
    color: white;
}

/* Feature bullet points */
.feature-bullets {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.feature-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

.feature-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7FB3E3;
    font-weight: bold;
}

/* Feature spacing */
#features .hero-container {
    margin-bottom: 80px;
}

#features .hero-container:last-child {
    margin-bottom: 0;
}

/* Mobile feature spacing overrides */
@media (max-width: 768px) {
    #features .hero-container {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    #features .hero-container {
        margin-bottom: 2rem;
    }
}

/* Creative Workflow Section */
.creative-workflow {
    padding: 120px 0 0 0;
    background: linear-gradient(180deg, white 0%, #e8e5ff 15%, #f0e8ff 30%, #f5e8ff 45%, #ffe8f5 60%, #fff0e8 80%, #fff8e8 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.creative-workflow-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.creative-workflow h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2D3447;
}

.creative-workflow p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.creative-workflow .hero-cta {
    display: flex;
    justify-content: center;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #5C6DBE;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #5EC5B2;
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2D3447;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: linear-gradient(0deg, white 0%, #f0e8ff 50%, #e8e5ff 100%);
}

.problem-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem, .solution {
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(45, 30, 133, 0.10);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.problem h2 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.solution h2 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.problem p, .solution p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: white;
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tech-item {
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(45, 30, 133, 0.10);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-visual {
    display: none;
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon-webcodecs {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.tech-icon-webgpu {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.tech-icon-opfs {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.tech-icon-cross {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.tech-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
}

.tech-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.tech-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.tech-benefits {
    background: transparent;
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.benefits-image {
    width: 100%;
}

.benefits-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D3447;
    margin-bottom: 1.5rem;
    text-align: left;
}

.benefits-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benefits-column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-benefits li {
    padding: 0.75rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.tech-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
}

/* CTA Sections */
.cta-sections {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D3447 0%, #212331 100%);
    color: white;
}

.cta-sections .section-title {
    color: white;
    margin-bottom: 3rem;
}

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

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

.cta-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-sections .primary-button {
    background: #F3A734;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(243, 167, 52, 0.3);
}

.cta-sections .primary-button:hover {
    background: linear-gradient(0deg, #5235EF 0%, #5235EF 0%, #8069FD 98%, #816AFD 100%, #8771FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(82, 53, 239, 0.30);
}

.cta-sections .primary-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px 0 rgba(82, 53, 239, 0.25);
}

.cta-sections .primary-button img {
    transition: transform 0.3s ease;
}

.cta-sections .primary-button:hover img {
    transform: translateX(2px);
}

.cta-sections .secondary-button {
    border-color: white;
    color: white;
}

.cta-sections .secondary-button:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    color: #1F2937;
}

.cta-sections .secondary-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
}

.cta-sections .secondary-button img {
    transition: transform 0.3s ease;
}

.cta-sections .secondary-button:hover img {
    filter: invert(25%) sepia(10%) saturate(800%) hue-rotate(181deg) brightness(85%) contrast(95%);
    transform: translateX(2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e5e5e5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section a {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 2rem;
    text-align: center;
    color: #a1a1aa;
    font-size: 0.75rem;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) {
    .navbar {
        width: calc(100% - 20px);
        top: 10px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-left {
        gap: 1.5rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    #features .hero-container {
        gap: 3rem;
    }
    
    .pill-tag {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}

/* Mobile landscape and small tablet */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 1160px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0 0 2px 0 rgba(26, 27, 30, 0.08), 0 2px 4px 0 rgba(34, 36, 40, 0.06), 0 4px 6px 0 rgba(60, 63, 73, 0.04);
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-primary-button, .nav-secondary-button {
        padding: 6px 6px 6px 12px;
        font-size: 12px;
        border-radius: 16px;
    }
    
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    #features {
        overflow-x: hidden;
    }
    
    #features .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        margin-bottom: 3rem;
    }
    
    #features .hero-content {
        order: 1;
    }
    
    #features .hero-image {
        order: 2;
    }
    
    .feature-tags {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .pill-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
    
    .creative-workflow {
        padding: 60px 0;
    }
    
    .creative-workflow-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .creative-workflow-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tech-benefits {
        padding: 2rem 1rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-text {
        order: 1;
    }
    
    .benefits-image {
        order: 2;
        width: 100%;
    }
    
    .benefits-text h3 {
        font-size: 2rem;
        text-align: center;
    }
    
    .benefits-description {
        text-align: center;
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }
    
    .benefits-column {
        text-align: left;
    }
    
    .tech-benefits li {
        text-align: left;
        padding-left: 2rem;
    }
    
    .tech-benefits li::before {
        left: 0.5rem;
    }
    
    .feature-bullets {
        text-align: left;
    }
    
    .feature-bullets li {
        text-align: left;
        padding-left: 2rem;
    }
    
    .feature-bullets li::before {
        left: 0.5rem;
    }
    
    .problem-solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-brand h3 {
        text-align: left;
    }
    
    .footer-brand p {
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h4 {
        text-align: left;
    }
    
    .footer-bottom {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .navbar {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 1160px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0 0 2px 0 rgba(26, 27, 30, 0.08), 0 2px 4px 0 rgba(34, 36, 40, 0.06), 0 4px 6px 0 rgba(60, 63, 73, 0.04);
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 55px;
    }
    
    .nav-logo h2 {
        font-size: 18px;
    }
    
    .nav-primary-button, .nav-secondary-button {
        padding: 5px 5px 5px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .nav-primary-button img, .nav-secondary-button img {
        width: 12px;
        height: 12px;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    #features {
        overflow-x: hidden;
    }
    
    #features .hero-container {
        gap: 1.5rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 10px 12px 24px;
        font-size: 16px;
        justify-content: center;
        border-radius: 25px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    #features h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    #features p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .feature-tags {
        gap: 0.5rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }
    
    .pill-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
    }
    
    .creative-workflow {
        padding: 50px 0;
    }
    
    .creative-workflow-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .creative-workflow-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-benefits {
        padding: 1.5rem 0.5rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-text {
        order: 1;
        text-align: center;
    }
    
    .benefits-image {
        order: 2;
        width: 100%;
    }
    
    .benefits-text h3 {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .benefits-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    
    .benefits-column {
        text-align: left;
    }
    
    .tech-benefits li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        text-align: left;
        padding-left: 2rem;
    }
    
    .tech-benefits li::before {
        left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .feature-bullets {
        text-align: left;
        margin-top: 1rem;
    }
    
    .feature-bullets li {
        text-align: left;
        padding-left: 2rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-bullets li::before {
        left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .tech-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .tech-item h3 {
        font-size: 1.25rem;
    }
    
    .tech-item p {
        font-size: 0.9rem;
    }
    
    .problem, .solution {
        padding: 2rem 1.5rem;
    }
    
    .problem h2, .solution h2 {
        font-size: 1.75rem;
    }
    
    .problem p, .solution p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.25rem;
    }
    
    .cta-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .image-placeholder {
        height: 250px;
        border-radius: 15px;
    }
    
    .image-placeholder img {
        border-radius: 15px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .footer-brand h3 {
        text-align: left;
    }
    
    .footer-brand p {
        text-align: left;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-links div {
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h4 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        text-align: left;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1rem;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-primary-button:hover,
    .nav-secondary-button:hover,
    .primary-button:hover,
    .secondary-button:hover {
        transform: none;
    }
    
    .nav-primary-button:active,
    .nav-secondary-button:active,
    .primary-button:active,
    .secondary-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Larger touch targets for mobile */
    .nav-primary-button,
    .nav-secondary-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .primary-button,
    .secondary-button {
        min-height: 48px;
        min-width: 120px;
    }
}
