/* ===== RESET & 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: #1f2937;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

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

/* ===== ANIMATION CLASSES ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

/* Section animations */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for section children */
.section-animate .animate-delay-1 {
    animation-delay: 0.1s;
}

.section-animate .animate-delay-2 {
    animation-delay: 0.2s;
}

.section-animate .animate-delay-3 {
    animation-delay: 0.3s;
}

.section-animate .animate-delay-4 {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loaded {
    opacity: 1;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: #4b5563;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #667fea;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #667fea;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== COMING SOON STYLES (Apple Best Practices) ===== */
.app-store-coming-soon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 120px;
    justify-content: flex-start;
}

.discover-coming-soon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 120px;
    justify-content: flex-start;
}

.coming-soon-badge,
.discover-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.badge-icon,
.discover-badge-icon {
    width: 14px;
    height: 14px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

.btn-coming-soon,
.btn-discover-coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.btn-coming-soon::before,
.btn-discover-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.launch-date,
.discover-launch-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    margin-top: 0.25rem;
}

/* ===== PRICING COMING SOON STYLES ===== */
.pricing-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.pricing-badge-icon {
    width: 16px;
    height: 16px;
    animation: sparkle 1.5s ease-in-out infinite;
}

.pricing-download-disabled {
    position: relative;
    opacity: 0.7;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.pricing-download-disabled:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.pricing-download-img.pricing-download-disabled {
    cursor: not-allowed;
}

.pricing-launch-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher select {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 4rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Colonna Sinistra - Mockup iPhone */
.hero-mockup {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-mockup {
    position: relative;
    width: 450px;
    height: 720px;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Colonna Destra - Contenuto */
.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 600px;
}

.hero-highlight {
    padding: 1rem 0;
    border-bottom: 3px solid rgba(59, 130, 246, 0.3);
    margin: 1rem 0;
}

.highlight-text {
    font-weight: 700;
    color: #1e40af;
    font-size: 1.1rem;
}

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

/* ===== MOCKUP SHOWCASE ===== */
.mockup-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.5) 0%, rgba(219, 234, 254, 0.2) 100%);
}


/* ===== INTERACTION HINTS ===== */
.interaction-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 500;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.hint-icon {
    width: 16px;
    height: 16px;
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.2);
    }
    50% {
        background: rgba(99, 102, 241, 0.15);
        border-color: rgba(99, 102, 241, 0.3);
    }
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

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

.showcase-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.mockup-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 420px;
    perspective: 1000px;
}

.mockup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.mockup-card:hover .card-click-indicator {
    opacity: 1;
    transform: scale(1.1);
}

.card-click-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.click-hand-icon {
    width: 16px;
    height: 16px;
    color: white;
    animation: click-pulse 2s ease-in-out infinite;
}

@keyframes click-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mockup-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.mockup-card.flipped .mockup-card-inner {
    transform: rotateY(180deg);
}

.mockup-card-front, .mockup-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1.5rem;
    overflow: hidden;
}

.mockup-card-back {
    background: white;
    color: #1f2937;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mockup-card-img {
    width: 100%;
    height: calc(100% - 70px);
    object-fit: cover;
}

.mockup-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    color: #1f2937;
    margin: 0;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-card-description {
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1.2rem;
    color: #6b7280;
    max-width: 100%;
    padding: 0 0.5rem;
}

.mockup-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mockup-card-features li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.mockup-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667fea;
    font-weight: bold;
}

/* Apple Intelligence Section */
.apple-intelligence {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
    margin-top: 3rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-radius: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.ai-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.ai-title {
    margin-bottom: 1.5rem;
}

.ai-brand {
    display: block;
    font-size: 3rem;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-subtitle {
    display: block;
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 400;
}

.ai-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1f2937;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 2px solid #667fea;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    position: relative;
}

.ai-description::before {
    content: "✨";
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 1.5rem;
    background: #667fea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.ai-mockup {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.2));
}

/* ===== NEW SECTION ===== */
.new-section {
    background: #ffffff;
    padding: 6rem 0;
    margin: 4rem 0;
    border-radius: 2rem;
    border: 3px solid #667fea;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(59, 130, 246, 0.1);
    position: relative;
}

.new-header {
    text-align: center;
    margin-bottom: 3rem;
}

.new-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.new-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.new-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1f2937;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.verve-highlight {
    color: #667fea;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.new-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667fea;
    margin: 0;
    text-align: center;
}

.ai-highlight {
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
    position: relative;
}

.ai-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    border-radius: 1px;
    opacity: 0.6;
}

.new-description-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 0 0 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
}

.description-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.new-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
    margin: 0;
    text-align: left;
    flex: 1;
    font-weight: 600;
}

.new-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.new-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
}

.feature-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    border-radius: 50%;
    color: white;
}

.new-feature span {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    flex: 1;
}

.new-image {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-mockup {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}


/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.benefit-icon-languages {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    border-radius: 1rem;
}

.flags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
}

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

.benefit-icon-privacy {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    border-radius: 1rem;
}

.privacy-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

/* ===== COMPETITIVE ADVANTAGE SECTION ===== */
.competitive-advantage {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.competitive-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.competitive-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.competitor-card, .vervemind-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competitor-card:hover, .vervemind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.competitor-card {
    border: 2px solid #fecaca;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.vervemind-card {
    border: 2px solid #a7f3d0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.competitor-header, .vervemind-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.competitor-title, .vervemind-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.competitor-title {
    color: #dc2626;
}

.vervemind-title {
    color: #059669;
}

.competitor-icon, .vervemind-icon {
    font-size: 2rem;
}

.competitor-features, .vervemind-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.competitor-feature, .vervemind-feature {
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.competitor-feature.negative {
    color: #dc2626;
}

.vervemind-feature.positive {
    color: #059669;
}

.competitive-highlight {
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
}

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

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #667fea 0%, #1e40af 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

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

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 6rem 0;
    background: #ffffff;
}

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

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: #667fea;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    text-align: center;
}

.pricing-card-header {
    margin-bottom: 2.5rem;
}

.pricing-access-type {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-right: 0.25rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.pricing-purchase-type {
    font-size: 1.125rem;
    color: white;
    margin: 0;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: white;
}

.checkmark {
    font-size: 1.25rem;
    color: white;
    margin-right: 0.75rem;
    font-weight: bold;
}

.pricing-cta {
    margin-top: 2rem;
    text-align: center;
}

.pricing-download-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-download-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.pricing-download-img {
    max-width: 200px;
    height: auto;
    border-radius: 0.75rem;
}

/* ===== TECH STACK SECTION ===== */
.tech-stack {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.tech-stack-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #667fea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tech-stack-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-icon-inner {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 0.5rem;
}

.tech-icon-blue {
    background: #667fea;
}

.tech-icon-purple {
    background: #8b5cf6;
}

.tech-icon-green {
    background: #10b981;
}

.tech-icon-orange {
    background: #f59e0b;
}

.tech-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tech-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-mockup {
        flex: none;
    }
    
    .iphone-mockup {
        width: 380px;
        height: 620px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .nav {
        display: none;
    }
    
    .mockup-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .mockup-card {
        height: 380px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .new-section {
        padding: 4rem 0;
        margin: 2rem 0;
    }
    
    .new-header {
        margin-bottom: 2rem;
    }
    
    .new-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .new-title {
        font-size: 2.5rem;
        color: #1f2937;
    }
    
    .new-subtitle {
        font-size: 1.4rem;
    }
    
    .new-features {
        align-items: flex-start;
    }
    
    .new-feature {
        width: 100%;
        max-width: 400px;
    }
    
    .new-description-wrapper {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }
    
    .description-icon {
        margin-top: 0.2rem;
    }
    
    .tech-stack {
        padding: 4rem 0;
    }
    
    .tech-stack-title {
        font-size: 2.5rem;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 3rem;
        height: 3rem;
        margin: 0 auto 0.75rem;
    }
    
    .benefit-icon-languages {
        font-size: 1.2rem;
    }
    
    .flag {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .iphone-mockup {
        width: 320px;
        height: 520px;
    }
    
    .mockup-card {
        height: 320px;
    }
    
    .apple-intelligence {
        padding: 2rem 1rem;
    }
    
    .ai-brand {
        font-size: 2rem;
    }
    
    .tech-stack {
        padding: 3rem 0;
    }
    
    .tech-stack-title {
        font-size: 2rem;
    }
    
    .tech-stack-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    
    .tech-icon-inner {
        width: 30px;
        height: 30px;
    }
    
    .pricing {
        padding: 4rem 0;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .pricing-download-img {
        max-width: 180px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .competitive-title {
        font-size: 2rem;
    }
    
    .competitor-card, .vervemind-card {
        padding: 1.5rem;
    }
    
    .competitive-highlight {
        padding: 2rem 1.5rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 auto 0.5rem;
    }
    
    .benefit-icon-languages {
        font-size: 1rem;
    }
    
    .flag {
        font-size: 0.9rem;
    }
}
