/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 10rem 1.5rem 0.5rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 2rem;
    position: relative;
}

.hero+.section {
    padding-top: 2rem;
}

.hero .badge {
    margin-bottom: 2rem;
}

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

.text-accent {
    color: var(--accent-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* =========================================
   HERO FEATURE & ECOSYSTEM
   ========================================= */

.apps-ecosystem {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 1rem;
}

.ecosystem-header h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ecosystem-header p {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    max-width: 42rem;
    margin: 0 auto;
}

.apps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.ecosystem-app {
    max-width: 48rem;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ecosystem-app::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.ecosystem-app:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}

.ecosystem-app:hover::before {
    opacity: 1;
}

.app-icon-wrapper {
    width: 7rem;
    height: 7rem;
    min-width: 7rem;
    background: var(--surface);
    border: 2px solid var(--border-medium);
    border-radius: 1.25rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.ecosystem-app:hover .app-icon-wrapper {
    border-color: var(--border-accent-strong);
    transform: scale(1.08);
}

.app-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ecosystem-app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.app-header h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.app-header p {
    color: var(--text-tertiary);
    font-size: 0.9375rem;
}

.app-highlights {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.app-highlights span {
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent-light);
    white-space: nowrap;
}

.sync-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.sync-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--surface);
    border: 2px solid var(--border-accent-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    animation: pulse-sync 3s ease-in-out infinite;
    transform: rotate(90deg);
}

@keyframes pulse-sync {

    0%,
    100% {
        transform: rotate(90deg) scale(1);
        box-shadow: var(--shadow-sm);
    }

    50% {
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
}

.sync-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent-light);
}

.ecosystem-footer {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    width: 100%;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.footer-stat svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-light);
    flex-shrink: 0;
}

.footer-stat span {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* =========================================
   MODULES GRID
   ========================================= */
.main-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.main-module-card {
    position: relative;
    transition: all var(--transition-normal);
}

.main-module-card::before {
    content: '';
    position: absolute;
    inset: -2rem;
    border-radius: 2rem;
    opacity: 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.4), transparent 70%);
    filter: blur(50px);
    transition: opacity var(--transition-slow);
    pointer-events: none;
    z-index: -1;
}

.main-module-card:hover {
    transform: translateY(-10px);
}

.main-module-card:hover::before {
    opacity: 1;
}

.main-module-content {
    padding: 3rem 2rem;
    background: var(--surface);
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.main-module-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.main-module-card:hover .main-module-content {
    border-color: var(--border-accent-strong);
    background: rgba(30, 41, 59, 0.9);
    box-shadow: var(--shadow-lg);
}

.main-module-card:hover .main-module-content::before {
    transform: scaleX(1);
}

.main-module-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: all var(--transition-normal);
    position: relative;
}

.main-module-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.main-module-card:hover .main-module-icon {
    transform: scale(1.15) translateY(-6px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.main-module-card:hover .main-module-icon::before {
    opacity: 1;
}

.main-module-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    transition: transform var(--transition-normal);
}

.main-module-card:hover .main-module-icon svg {
    transform: scale(1.1);
}

.main-module-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.main-module-card:hover .main-module-content h3 {
    color: var(--accent-light);
}

.main-module-content p {
    font-size: 1rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    transition: color var(--transition-fast);
}

.main-module-card:hover .main-module-content p {
    color: var(--text-secondary);
}

.module-badge {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--border-accent);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-top: auto;
}

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

/* =========================================
   ADDITIONAL FEATURES
   ========================================= */
.additional-features {
    padding: 3rem;
    border-radius: 1.5rem;
    background: rgba(26, 35, 50, 0.5);
    border: 1px solid var(--border-subtle);
    margin-bottom: 3rem;
}

.additional-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.additional-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.additional-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.additional-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.additional-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: var(--surface);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
    flex: 0 1 280px;
}

.additional-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.additional-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
}

.additional-card:hover .additional-icon {
    background: rgba(59, 130, 246, 0.25);
    transform: scale(1.1);
}

.additional-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-light);
}

.additional-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.additional-card p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* =========================================
   PRICING
   ========================================= */
.pricing-preview {
    max-width: 56rem;
    margin: 0 auto;
}

.pricing-preview-content {
    text-align: center;
}

.pricing-preview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-preview-content>p {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    margin-bottom: 3rem;
    line-height: 1.75;
}

.pricing-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border-accent);
}

.pricing-highlight-item {
    text-align: center;
}

.highlight-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--border-accent);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.pricing-highlight-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-highlight-item p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.pricing-highlight-divider {
    width: 1px;
    height: 100%;
    min-height: 80px;
    background: var(--border-light);
    margin: 0 auto;
}

/* =========================================
   TARGET AUDIENCE
   ========================================= */
.target-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.target-card {
    transition: transform var(--transition-normal);
    cursor: pointer;
}

.target-card:hover {
    transform: translateY(-6px);
}

.target-card-content {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.target-card-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 70%);
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.target-card:hover .target-card-content::before {
    opacity: 1;
}

.target-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.target-icon svg {
    width: 2.25rem;
    height: 2.25rem;
}

.target-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.target-card>div>div>p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
}

.target-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.target-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.target-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
}

.social-proof {
    text-align: center;
    padding: 1rem;
}

.social-proof p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.social-proof .highlight {
    font-weight: 700;
    color: var(--accent-light);
}

/* =========================================
   CTA & DOWNLOAD
   ========================================= */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.ecosystem-container-inner {
    padding: 3.5rem;
    background: var(--surface);
    border-radius: 2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

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

.cta-content>p {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background: var(--surface);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all var(--transition-normal);
}

.download-btn:hover {
    transform: scale(1.05) translateY(-2px);
}

.download-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.download-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-align: left;
}

.download-store {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
}

.download-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.download-feature svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent-light);
}

.download-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 1rem;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (min-width: 640px) {
    .additional-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-feature-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .pricing-preview-content h2 {
        font-size: 3rem;
    }

    .pricing-highlight {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 3.75rem;
    }

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

@media (max-width: 767px) {
    .hero {
        padding: 8rem 1rem 2rem;
    }

    .hero+.section {
        padding-top: 1rem;
    }

    .ecosystem-container-inner {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-feature {
        margin-top: 3rem;
    }

    .hero-feature-content {
        padding: 2rem;
    }

    .apps-ecosystem {
        gap: 2.5rem;
    }

    .ecosystem-header h3 {
        font-size: 1.75rem;
    }

    .ecosystem-header p {
        font-size: 1rem;
    }

    .ecosystem-app {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .app-icon-wrapper {
        width: 5.5rem;
        height: 5.5rem;
        min-width: 5.5rem;
    }

    .app-header h4 {
        font-size: 1.5rem;
    }

    .app-highlights {
        justify-content: center;
        gap: 0.5rem;
    }

    .ecosystem-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .section {
        padding: 5rem 1rem;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .main-modules-grid {
        gap: 1.5rem;
    }

    .main-module-content {
        padding: 2rem 1.5rem;
    }

    .main-module-icon {
        width: 4rem;
        height: 4rem;
    }

    .main-module-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .main-module-content h3 {
        font-size: 1.25rem;
    }

    .main-module-content p {
        font-size: 0.9375rem;
    }

    .additional-features {
        padding: 2rem 1.5rem;
    }

    .additional-header h3 {
        font-size: 1.5rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .additional-card {
        padding: 1.5rem;
    }

    .target-grid {
        gap: 1.5rem;
    }

    .target-card-content {
        padding: 2rem 1.5rem;
    }

    .target-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .target-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .target-card h3 {
        font-size: 1.5rem;
    }

    .target-card>div>div>p {
        font-size: 1rem;
    }

    .pricing-preview-content h2 {
        font-size: 2rem;
    }

    .pricing-preview-content>p {
        font-size: 1rem;
    }

    .pricing-highlight {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .pricing-highlight-item h3 {
        font-size: 1.25rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }

    .cta-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content>p {
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .download-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .download-features {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .social-proof p {
        font-size: 1rem;
    }

    .pricing-highlight-divider {
        width: 100%;
        height: 1px;
        min-height: 0;
    }

    .main-modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0.75rem 4rem;
    }

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

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-feature-content {
        padding: 1.5rem;
    }

    .section {
        padding: 4rem 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .main-module-content {
        padding: 1.75rem 1.25rem;
    }

    .target-card-content {
        padding: 1.75rem 1.25rem;
    }

    .additional-features {
        padding: 1.5rem 1rem;
    }

    .pricing-highlight {
        padding: 1.5rem 1rem;
    }

    .cta-content {
        padding: 1.5rem 1rem;
    }

    .ecosystem-header h3 {
        font-size: 1.5rem;
    }

    .ecosystem-app {
        padding: 1.5rem;
    }

    .app-icon-wrapper {
        width: 5rem;
        height: 5rem;
        min-width: 5rem;
    }

    .app-highlights span {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .ecosystem-footer {
        gap: 0.75rem;
    }
}


.ecosystem-app {
    flex-direction: column;
    align-items: stretch;
}

.app-top-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.app-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
    padding: 0.875rem 1.5rem;
    width: 100%;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
    color: white;
    background: var(--accent-primary);
    border: 1px solid var(--border-accent-strong);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.app-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.app-download-btn span,
.app-download-btn svg {
    position: relative;
    z-index: 1;
}

.app-download-btn svg {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform var(--transition-normal);
}

.app-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: var(--accent-light);
}

.app-download-btn:hover::before {
    opacity: 1;
}

.app-download-btn:hover svg {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .app-top-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}