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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Fix mobile scroll issues */
    touch-action: pan-y;
    -webkit-overflow-scrolling: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    padding: 12px 24px;
    border: 2px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    position: absolute;
    left: 0;
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-brand a {
    text-decoration: none;
    border: none;
    display: block;
}

.nav-brand .nav-logo {
    height: 57px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Vertical Layout */
.hero {
    padding: 125px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.typing-line {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .highlight {
    background: linear-gradient(120deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: gradientShift 3s ease-in-out infinite;
}

.typing-line.typing-active {
    border-right: 2px solid white;
    animation: blink-caret 0.75s step-end infinite;
}

.typing-line.typing-complete {
    border-right: none;
    animation: none;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Typography */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

.typing-paragraph {
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* iPhone 16 Mockup Styles */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.iphone-mockup {
    position: relative;
    width: 300px;
    aspect-ratio: 9 / 19.5;
    margin: 0 auto;
    cursor: pointer;
    user-select: none;
}

.iphone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 46px;
    padding: 10px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.iphone-frame::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border-radius: 50%;
    z-index: 11;
}

.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    width: 20px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive iPhone Mockup */
@media (max-width: 768px) {
    .iphone-mockup {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .iphone-mockup {
        width: 240px;
    }
    
    .iphone-frame {
        border-radius: 40px;
        padding: 8px;
    }
    
    .iphone-screen {
        border-radius: 34px;
    }
    
    .iphone-frame::before {
        width: 100px;
        height: 24px;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* License Compliance Section */
.license-compliance {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.license-compliance .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #667eea;
}

.license-compliance .section-title i {
    font-size: 2rem;
}

.license-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.license-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.license-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.license-feature > i {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.license-feature h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.license-feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
}

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

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-left-color: #764ba2;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.use-case-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.use-case-card ul {
    list-style: none;
}

.use-case-card li {
    color: #667eea;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Pro Features Section */
.pro-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.pro-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pro-features .section-title {
    color: white;
}

.pro-features .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.pro-features-list h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.free {
    border: 2px solid #e0e0e0;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid #667eea;
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-card.free h3 {
    color: #666;
}

.pricing-description {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.pricing-highlight {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.pricing-description p:last-child {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1a1a1a;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-period {
    color: #666;
}

.price-save {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-card .btn-secondary,
.pricing-card .pricing-options {
    margin-top: 30px;
}

.pro-description {
    margin-top: 3rem;
    text-align: center;
}

.pro-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Key Difference */
.pricing-key-difference {
    margin-top: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-key-difference h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.difference-item {
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.difference-item h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.difference-item p {
    color: #555;
    line-height: 1.6;
}

.difference-item strong {
    color: #333;
    font-weight: 600;
}

/* Features Comparison Section */
.features-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
    width: 100%;
    /* Fix mobile scroll - allow both directions */
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: auto;
}

.comparison-table table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    text-align: center;
    width: 20%;
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    text-align: center;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table .category-row td {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
    padding: 0.8rem 1.2rem;
}

.badge-free {
    background: #e0e0e0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.text-muted {
    color: #999;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: 60px;
    background: #667eea;
    opacity: 0.3;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
    font-size: 1.2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.cta-feature i {
    color: #ffd700;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-brand .footer-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-legal-link:hover {
    color: #667eea;
    text-decoration: underline;
}

.footer-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* AI Stylization Section */
.ai-features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fc 100%);
}

.badge-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

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

.style-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.style-feature h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.style-tags .tag {
    background: #f8f9fa;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    border: 1px solid #e9ecef;
}

.style-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.style-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.style-list li:last-child {
    border-bottom: none;
}

.style-templates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.template-card {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.template-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.template-name {
    font-size: 0.875rem;
    color: #495057;
}

/* Media Configuration Section */
.media-features-section {
    padding: 5rem 0;
    background: white;
}

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

.media-feature {
    padding: 2rem;
    background: #f8f9fc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.media-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.media-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.media-feature h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.media-feature ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.media-feature ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.media-feature ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.media-comparison {
    margin-top: 4rem;
    padding: 2rem;
    background: #f8f9fc;
    border-radius: 12px;
}

.media-comparison h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    width: 100%;
    /* Fix mobile scroll - allow both directions */
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: auto;
}

.media-comparison-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.media-comparison-table th {
    background: #f1f3f5;
    padding: 1rem;
    text-align: left;
}

.media-comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f3f5;
}

.media-comparison-table .text-success {
    color: #28a745;
}

.media-comparison-table .text-muted {
    color: #6c757d;
}

/* Pricing Options */
.pricing-options {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.pricing-option {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Menu Styles - iOS Compatible */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #667eea;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 1rem auto auto;
    z-index: 1002;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* iOS Specific Fixes */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Ensure clickable area matches visual area */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* Fix iOS button styling */
    -webkit-appearance: none;
    appearance: none;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: rgba(102, 126, 234, 0.1);
    outline: none;
}

.mobile-menu-toggle:active {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(0.95);
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    /* Disable body scroll when menu is open */
    overflow: hidden;
    /* Smooth animation like language switcher */
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-menu-content {
    background: white;
    width: 90%;
    max-width: 300px;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-menu.mobile-menu-open {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-nav-menu.mobile-menu-open .mobile-nav-menu-content {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-menu .nav-link,
.mobile-nav-menu .btn-primary {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover {
    background: #f8f9fa;
    color: #667eea;
}

.mobile-nav-menu .btn-primary {
    margin-top: 0.5rem;
}

/* Responsive Design - Keep 2-column layout on all devices */
@media (max-width: 991px) {
    .hero {
        padding: 105px 0 60px;
    }
    
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 490px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    
    .hero-content {
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn-large {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 408px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features {
        overflow-x: hidden;
        /* Prevent scroll lock on mobile */
        touch-action: pan-y;
    }
    
    .pro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* New sections responsive */
    .stylization-grid {
        grid-template-columns: 1fr;
    }
    
    .style-templates {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .template-card {
        padding: 0.75rem;
    }
    
    .template-icon {
        font-size: 1.25rem;
    }
    
    .template-name {
        font-size: 0.75rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card .pricing-features {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .badge-pro {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Additional responsive styles for pricing and comparison */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.4rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        font-size: 0.8rem;
    }
    
    /* Reduce large font sizes */
    .price-amount {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Medium mobile devices */
@media (max-width: 480px) {
    .hero-content {
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .feature-card,
    .use-case-card,
    .style-feature,
    .media-feature {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 35px 0 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        /* Prevent scroll lock on mobile */
        touch-action: pan-y;
    }
    
    .use-cases-grid,
    .features-grid {
        width: 100%;
        max-width: 100%;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .use-case-card,
    .style-feature,
    .media-feature,
    .pricing-card {
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 32px 0 12px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        /* Prevent scroll lock on mobile */
        touch-action: pan-y;
    }
    
    .use-cases-grid,
    .features-grid {
        width: 100%;
        max-width: 100%;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .style-templates {
        grid-template-columns: 1fr;
    }
}
/* Language Switcher */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
    z-index: 100;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    color: #667eea;
}

.lang-toggle:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-1px);
}

.current-lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.current-lang-name {
    font-weight: 500;
}

.lang-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.show + .lang-toggle i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: #333;
}

.lang-option:hover {
    background: rgba(102, 126, 234, 0.1);
}

.lang-option.active {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    font-weight: 600;
}

.lang-option:first-child {
    border-radius: 6px 6px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 6px 6px;
}

.lang-flag {
    font-size: 1.3rem;
    line-height: 1;
}

.lang-name {
    font-weight: 500;
}

/* Tablet-specific: Compact single-row navigation */
@media (min-width: 769px) and (max-width: 991px) {
    .container {
        padding: 0 40px 0 20px;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-menu .btn-primary {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .language-switcher {
        margin-left: 0.5rem;
    }
}

/* Responsive Language Switcher */
@media (max-width: 991px) {
    .language-switcher {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 100;
    }
    
    .lang-toggle {
        padding: 6px 12px;
    }
    
    .current-lang-name {
        display: none;
    }
    
    .lang-dropdown {
        right: 0;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 67px;
        overflow: visible;
    }
    
    .navbar {
        height: 67px;
        padding: 0;
        overflow: visible;
    }
    
    .navbar .container {
        height: 67px;
        padding: 0 0.75rem;
        display: flex;
        align-items: center;
        overflow: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 10px;
    }
    
    .nav-brand {
        position: absolute;
        left: 15px;
        z-index: 100;
    }
    
    .nav-brand a {
        text-decoration: none;
        border: none;
        display: block;
    }
    
    .nav-brand .nav-logo {
        height: 57px;
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .language-switcher {
        position: absolute;
        right: 55px;
        z-index: 10000;
        margin: 0;
    }
    
    .lang-toggle {
        padding: 5px 8px;
        font-size: 0.85rem;
    }
    
    .current-lang-flag {
        font-size: 1rem;
    }
    
    .lang-dropdown {
        position: fixed;
        top: 56px;
        right: 10px;
        z-index: 10001;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        right: 70px;
    }
    
    .lang-toggle {
        padding: 5px 8px;
        border-width: 1.5px;
    }
    
    .lang-toggle i {
        font-size: 0.7rem;
    }
}
