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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

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

.header.hidden {
    transform: translateY(-100%);
}

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

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.contact-icon {
    color: var(--primary-color);
}

.contact-divider {
    width: 1px;
    height: 20px;
    background: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23ffffff" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1" fill="%23ffffff" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 50px;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    animation: floatAnimation 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

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

/* Trusted By Section */
.trusted-by {
    padding: 60px 20px;
    background: var(--bg-secondary);
    text-align: center;
}

.trusted-content h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    max-width: 250px;
    margin: 0 auto;
}

.step-connector {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 33.33%;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    padding: 40px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.quote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.impact h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* App Promo Section */
.app-promo {
    padding: 80px 0;
    background: #f0f4ff;
    position: relative;
    overflow: hidden;
}

.app-promo-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-promo-left {
    flex: 1;
    min-width: 0;
}

.app-promo-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--text-primary);
    line-height: 1.2;
}

.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.app-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.app-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.15);
}

.app-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5a52e0;
}

.app-feature-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a2e;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(26,26,46,0.3);
    letter-spacing: 0.3px;
}

.app-download-btn:hover {
    background: #2d2d5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26,26,46,0.4);
}

.app-download-btn i {
    font-size: 0.85rem;
}

.app-coming-soon {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-coming-soon i {
    font-size: 1rem;
}

/* Phone Mockup Right Side */
.app-promo-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    position: relative;
}

.phone-mockups {
    position: relative;
    width: 340px;
    height: 510px;
}

.phone-mockup {
    position: absolute;
    width: 220px;
}

.phone-back {
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-6deg);
    filter: drop-shadow(-8px 16px 32px rgba(0,0,0,0.15));
}

.phone-front {
    top: 30px;
    right: 0;
    z-index: 2;
    transform: rotate(4deg);
    filter: drop-shadow(8px 16px 32px rgba(0,0,0,0.18));
}

.phone-frame {
    background: #1a1a2e;
    border-radius: 36px;
    padding: 7px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
}

.phone-screen {
    background: #f5f6fb;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px 4px;
    font-size: 9px;
    font-weight: 700;
    color: #333;
    background: #f5f6fb;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 8px;
}

/* Login Screen */
.mock-login {
    padding: 14px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mock-app-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6c63ff, #4f46e5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 4px;
    box-shadow: 0 4px 12px rgba(99,102,241,0.35);
}

.mock-login h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.mock-login p {
    font-size: 0.7rem;
    color: #888;
    margin: 0 0 6px;
    text-align: center;
}

.mock-input {
    width: 100%;
    background: #eef0f8;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 0.68rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.mock-input i {
    color: #aaa;
    font-size: 10px;
}

.mock-login-btn {
    width: 100%;
    background: linear-gradient(135deg, #6c63ff, #4f46e5);
    color: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.mock-link {
    font-size: 0.62rem;
    color: #888;
    text-align: center;
}
.mock-link span { color: #5a52e0; font-weight: 600; }

/* Dashboard Screen */
.mock-dashboard {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.mock-welcome-text {
    font-size: 0.65rem;
    color: #888;
    margin: 0;
}

.mock-username {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.mock-power-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #e74c3c;
    font-size: 12px;
}

.mock-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mock-stat-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mock-stat-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: white;
}
.mock-stat-icon.blue { background: #e8eaff; color: #5a52e0; }
.mock-stat-icon.green { background: #e8fff4; color: #27ae60; }

.mock-stat-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 0.3px;
}

.mock-stat-val {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mock-grid-item {
    border-radius: 14px;
    padding: 14px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.62rem;
    font-weight: 600;
    text-align: center;
}

.mock-grid-item i { font-size: 18px; }

.mock-grid-item.purple { background: linear-gradient(135deg, #7c67ee, #6c63ff); }
.mock-grid-item.pink   { background: linear-gradient(135deg, #f06, #e3318c); }
.mock-grid-item.teal   { background: linear-gradient(135deg, #11998e, #38ef7d); }
.mock-grid-item.orange { background: linear-gradient(135deg, #f7971e, #ffd200); }

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-button.large {
    background: white;
    color: var(--primary-color);
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.cta-button.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info .contact-icon {
    width: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-play-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 160px;
}

.footer-play-badge:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
}

.footer-play-icon {
    font-size: 26px;
    color: white;
    flex-shrink: 0;
}

.footer-play-text {
    display: flex;
    flex-direction: column;
}

.footer-play-top {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    line-height: 1;
    margin-bottom: 2px;
}

.footer-play-bottom {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-ios-note {
    margin-top: 10px !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Popup Styles */
.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.popup-backdrop.show .popup-card {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.popup-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.popup-contact-info {
    margin-bottom: 30px;
}

.popup-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    margin-bottom: 15px;
}

.popup-contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 20px;
}

.popup-contact-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.popup-content p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.popup-cta {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-promo-layout {
        flex-direction: column;
        gap: 40px;
    }

    .app-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-promo-right {
        display: none;
    }


    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-divider {
        display: none;
    }
    
    .popup-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

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