/* ===================================
   YourFins - Colores Corporativos
   =================================== */
:root {
    --brand-dark-green: #2E7366;
    --brand-bright-green: #4DBF8C;
    --brand-golden: #F2B21A;
    --brand-yellow: #FFE600;
    --brand-light-green: #D9F2E6;
    --brand-red: #F24033;
    --brand-orange: #FF8C1A;
    --brand-blue: #3399FF;
    
    --dark-bg: #1a2332;
    --darker-bg: #0f1419;
    --light-text: #ffffff;
    --gray-text: #a0aec0;
    --border-color: #2d3748;
}

/* ===================================
   Reset y Base
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background: #ffffff;
}

/* Dark background for blog articles */
body.blog-page {
    background: var(--dark-bg);
}

/* Footer styles for blog pages */
body.blog-page .footer {
    background: var(--darker-bg) !important;
}

body.blog-page .footer-section h3,
body.blog-page .footer-section h4,
body.blog-page .footer-section p {
    color: var(--light-text) !important;
}

body.blog-page .footer-section a {
    color: var(--gray-text) !important;
}

body.blog-page .footer-section a:hover {
    color: var(--brand-bright-green) !important;
}

body.blog-page .footer-bottom p {
    color: var(--gray-text) !important;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-bright-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-bright-green);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    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
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(77, 191, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 178, 26, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
    color: white;
    box-shadow: 0 4px 15px rgba(77, 191, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 191, 140, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-bright-green);
}

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

.stat {
    display: flex;
    flex-direction: column;
}

/* Screenshots Showcase */
.screenshots-showcase {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: hidden;
}

.screenshot {
    position: absolute;
    width: 240px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 8px solid #1a1a1a;
}

.screenshot-1 {
    left: 15%;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%) rotate(-10deg) scale(0.9);
    opacity: 0.85;
    filter: brightness(0.8);
}

.screenshot-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 4;
    opacity: 1;
    box-shadow: 0 30px 80px rgba(77, 191, 140, 0.5);
    filter: brightness(1);
}

.screenshot-3 {
    right: 15%;
    top: 50%;
    transform: translateY(-50%) rotate(10deg) scale(0.9);
    z-index: 2;
    opacity: 0.85;
    filter: brightness(0.8);
}

.screenshot:hover {
    transform: translate(-50%, -50%) scale(1.25) rotate(0deg) !important;
    left: 50% !important;
    top: 50% !important;
    z-index: 10;
    opacity: 1;
    box-shadow: 0 40px 100px rgba(77, 191, 140, 0.6);
    filter: brightness(1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

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

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--brand-dark-green), var(--brand-bright-green));
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-preview {
    width: 80%;
    height: auto;
    border-radius: 20px;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 6rem 0;
    background: #f7fafc;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.ai-icon {
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
}

.voice-icon {
    background: linear-gradient(135deg, var(--brand-blue), #2563eb);
}

.scan-icon {
    background: linear-gradient(135deg, var(--brand-orange), #ea580c);
}

.multi-icon {
    background: linear-gradient(135deg, var(--brand-golden), #eab308);
}

.security-icon {
    background: linear-gradient(135deg, var(--brand-red), #dc2626);
}

.analytics-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #718096;
    line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.developer-image {
    width: 100%;
    border-radius: 16px;
}

.about-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--brand-bright-green);
    flex-shrink: 0;
}

.tech-stack h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===================================
   Download Section
   =================================== */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.download .section-title,
.download .section-subtitle {
    color: var(--light-text);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.app-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-details h3 {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.app-details p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--brand-golden);
    font-size: 1.25rem;
}

.rating-text {
    color: var(--gray-text);
    font-size: 0.875rem;
}

.app-description {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 120px;
    overflow-y: auto;
}

.app-description p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.btn-download {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
}

.download-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.stat-card h4 {
    color: var(--light-text);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.stat-card p {
    color: var(--gray-text);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.version-info {
    font-size: 0.8rem !important;
    color: var(--brand-bright-green) !important;
    font-weight: 500;
    margin: 0 !important;
}

.version-info span:first-child {
    opacity: 0.8;
}

.version-info span:last-child {
    font-weight: 600;
    margin-left: 0.25rem;
}

.last-updated {
    font-size: 0.7rem !important;
    color: var(--gray-text) !important;
    opacity: 0.7;
    font-weight: 400;
    margin: 0 !important;
}

.last-updated span:first-child {
    opacity: 0.8;
}

.last-updated span:last-child {
    font-weight: 500;
    margin-left: 0.25rem;
}

.languages-full-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.languages-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.languages-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.languages-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.languages-info h3 {
    color: var(--light-text);
    font-size: 1.25rem;
    margin: 0 0 0.25rem 0;
}

.languages-info p {
    color: var(--gray-text);
    font-size: 0.875rem;
    margin: 0;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
    gap: 0.6rem;
    width: 100%;
}

.language-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--brand-bright-green);
}

/* ===================================
   iOS Features Section
   =================================== */
.ios-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.ios-section .section-title {
    color: var(--brand-bright-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.ios-section .section-subtitle {
    color: var(--gray-text);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.ios-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(77, 191, 140, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ios-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-bright-green), var(--brand-golden));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ios-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-bright-green);
    box-shadow: 0 20px 40px rgba(77, 191, 140, 0.3);
}

.ios-feature-card:hover::before {
    opacity: 1;
}

.ios-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.ios-feature-title {
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ios-feature-desc {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ios-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ios-feature-list li {
    color: var(--light-text);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ios-feature-list li::before {
    font-weight: 700;
    color: var(--brand-bright-green);
}

/* Responsive iOS Section */
@media (max-width: 768px) {
    .ios-section {
        padding: 4rem 0;
    }
    
    .ios-section .section-title {
        font-size: 2rem;
    }
    
    .ios-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ios-feature-card {
        padding: 2rem;
    }
    
    .ios-feature-icon {
        font-size: 3rem;
    }
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.pricing .section-title,
.pricing .section-subtitle {
    color: var(--light-text);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-bright-green);
    box-shadow: 0 20px 40px rgba(77, 191, 140, 0.3);
}

.pricing-popular {
    border-color: var(--brand-bright-green);
    transform: scale(1.05);
}

.pricing-premium {
    border-color: var(--brand-golden);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--brand-bright-green);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.premium-badge {
    background: var(--brand-golden);
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.pricing-name {
    color: var(--light-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-mice {
    color: var(--brand-bright-green);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-mice span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-text);
}

.pricing-price {
    color: var(--light-text);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-save {
    color: var(--brand-golden);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    color: var(--gray-text);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features .check-icon {
    color: var(--brand-bright-green);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(77, 191, 140, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(77, 191, 140, 0.3);
}

.pricing-note p {
    color: var(--light-text);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.appstore-badge {
    height: 50px;
    width: auto;
    display: block;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f7fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-bright-green);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--brand-bright-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 6rem 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-map {
    max-width: 100%;
    margin-top: 3rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-address {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.map-address p {
    color: #4a5568;
    margin: 0.5rem 0;
}

.map-address strong {
    color: #1a202c;
    font-size: 1.1rem;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #718096;
    margin-bottom: 0.5rem;
}

.text-muted {
    font-size: 0.875rem;
    color: #a0aec0;
}

.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--brand-bright-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-bright-green);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--gray-text);
    font-size: 0.875rem;
}

.footer-column h4 {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--brand-bright-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.875rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--brand-bright-green);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--light-text);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content,
    .about-content,
    .download-content,
    .contact-content {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .screenshots-showcase {
        height: 450px;
        width: 100%;
        max-width: 100%;
    }
    
    .screenshot {
        width: 180px;
        max-width: 40vw;
    }
    
    .screenshot-1 {
        left: 5%;
        transform: translateY(-50%) rotate(-8deg) scale(0.75);
    }
    
    .screenshot-2 {
        transform: translate(-50%, -50%) scale(1.0);
    }
    
    .screenshot-3 {
        right: 5%;
        transform: translateY(-50%) rotate(8deg) scale(0.75);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-popular {
        transform: scale(1.0);
    }
    
    /* Fix overflow issues on tablet */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

@media (max-width: 640px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .screenshots-showcase {
        height: 350px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
    }
    
    .screenshot {
        width: 100px;
        max-width: 30vw;
    }
    
    .screenshot-1 {
        left: 2%;
        transform: translateY(-50%) rotate(-6deg) scale(0.65);
    }
    
    .screenshot-2 {
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .screenshot-3 {
        right: 2%;
        transform: translateY(-50%) rotate(6deg) scale(0.65);
    }

    .section-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-popular {
        transform: scale(1.0);
    }
    
    .pricing-badge {
        font-size: 0.65rem;
        padding: 4px 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }
    
    /* Critical mobile overflow fixes */
    * {
        max-width: 100%;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .hero-content {
        width: 100%;
        padding: 0;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

/* ===================================
   Language Selector
   =================================== */
.language-selector {
    position: relative;
    margin-left: 1.5rem;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-btn .chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.language-btn.active .chevron {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.lang-option {
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a202c;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-option:hover {
    background: var(--brand-bright-green);
    color: white;
}

/* Responsive Language Selector */
@media (max-width: 968px) {
    .language-selector {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .language-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 50px;
        gap: 0.2rem;
    }
    
    .language-btn .chevron {
        width: 14px;
        height: 14px;
    }
    
    .language-dropdown {
        right: auto;
        left: 0;
        min-width: 120px;
    }
    
    .lang-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-card {
        padding: 2rem 1.5rem;
    }
    
    .download-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .app-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .download-stats {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .languages-full-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .languages-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .languages-icon {
        width: 44px;
        height: 44px;
    }
    
    .languages-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .languages-info h3 {
        font-size: 1.1rem;
    }
    
    .languages-info p {
        font-size: 0.8rem;
    }
    
    .languages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }
    
    .language-badge {
        padding: 0.35rem 0.4rem;
        font-size: 0.7rem;
    }
}

/* ===================================
   3D Tilt Effect
   =================================== */
.feature-card,
.stat-card,
.download-card {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

/* ===================================
   Text Reveal Animation
   =================================== */
@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    opacity: 0;
}

/* ===================================
   Floating Elements
   =================================== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    opacity: 0.15;
    animation: float infinite ease-in-out;
    filter: blur(1px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

/* ===================================
   Gradient Animations
   =================================== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(77, 191, 140, 0.03) 50%,
        transparent 70%
    );
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10%, 10%) rotate(90deg);
    }
    50% {
        transform: translate(0, 20%) rotate(180deg);
    }
    75% {
        transform: translate(-10%, 10%) rotate(270deg);
    }
}

/* Ensure content is above gradient */
.hero > .container {
    position: relative;
    z-index: 1;
}

/* ===================================
   Mobile Optimizations
   =================================== */
@media (max-width: 768px) {
    /* Simplify text reveal on mobile */
    .hero-title {
        opacity: 1 !important;
    }
    
    .hero-title span span {
        animation-duration: 0.3s !important;
    }
    
    /* Reduce gradient animation speed */
    .hero::before {
        animation-duration: 25s !important;
    }
    
    /* Smaller floating elements */
    .floating-element {
        opacity: 0.1;
        font-size: 0.8em !important;
    }
    
    /* Disable tilt transform on very small screens */
    @media (max-width: 480px) {
        .feature-card,
        .stat-card,
        .download-card {
            transform: none !important;
        }
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero::before {
        animation: none !important;
    }
}

/* Performance optimization for low-end devices */
@media (max-width: 640px) and (max-height: 800px) {
    .floating-elements {
        display: none;
    }
    
    .hero::before {
        display: none;
    }
}

/* ===================================
   Blog Section
   =================================== */
.blog {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.blog .section-title,
.blog .section-subtitle {
    color: var(--light-text);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 3rem 0 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-bright-green);
    box-shadow: 0 20px 40px rgba(77, 191, 140, 0.3);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--brand-bright-green), var(--brand-golden));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-category {
    color: var(--brand-bright-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.blog-cta {
    color: var(--brand-bright-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-cta:hover {
    gap: 1rem;
}

@media (max-width: 768px) {
    .blog {
        padding: 4rem 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0 0;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.reviews-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.rating-badge {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--brand-bright-green);
}

.rating-badge .stars {
    font-size: 1.5rem;
    color: #fbbf24;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-bright-green);
    line-height: 1;
}

.rating-label {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.rating-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Testimonials Rotating System */
.testimonials-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--brand-bright-green);
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    gap: 1.5rem;
}

.testimonial-slide {
    min-width: calc(33.333% - 1rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--light-text);
    text-align: center;
    width: 100%;
}

.testimonial-stars {
    font-size: 1.2rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.testimonial-author {
    color: var(--brand-bright-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Animation for sliding effect */
@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.testimonial-slide.slide-in {
    animation: slideIn 0.8s ease-out;
}

.testimonial-slide.slide-out {
    animation: slideOut 0.8s ease-in;
}

.reviews-cta {
    text-align: center;
}

.reviews-cta .btn {
    background: var(--brand-bright-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-cta .btn:hover {
    background: var(--brand-golden);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(77, 191, 140, 0.3);
}

/* Loading Animation */
.loading-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.loading-reviews::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--brand-bright-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Responsive Reviews */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-track {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Asegurar que los iconos sean visibles en móvil */
    .stat-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }
    
    .stat-icon svg {
        width: 22px;
        height: 22px;
    }
    
    /* Estilos para la descripción de la app en móvil */
    .app-description {
        margin: 1rem 0;
        padding: 0.75rem;
        max-height: 100px;
    }
    
    .app-description p {
        font-size: 0.85rem;
    }
    
    .testimonial-slide {
        min-width: 100%;
        padding: 1rem;
    }
    
    .testimonial-content {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        text-align: center;
        line-height: 1.4;
        font-size: 0.9rem;
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .testimonial-author {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        padding: 1rem;
    }
    
    .testimonial-slide {
        padding: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    /* Iconos más pequeños en pantallas muy pequeñas */
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Idiomas en pantallas muy pequeñas */
    .languages-full-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .languages-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .languages-icon {
        width: 40px;
        height: 40px;
    }
    
    .languages-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }
}
