:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --success: #10b981;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(124, 58, 237, 0.5);
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.4) 0%, rgba(6, 182, 212, 0.4) 100%);
    --shadow-glow: 0 0 80px rgba(124, 58, 237, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 40%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 0.75rem 1.5rem;
}

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--success);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
    letter-spacing: -0.03em;
}

.hero-title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
    line-height: 1.7;
}

.top-journal-link {
    color: #7dd3fc;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    font-weight: 600;
    transition: color 0.25s ease;
}

.top-journal-link:hover {
    color: #a78bfa;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

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

.stats {
    position: relative;
    padding: 3rem 1.5rem 4rem;
    z-index: 1;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
}

.features {
    position: relative;
    padding: 5rem 1.5rem;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.02) 50%, transparent 100%);
}

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

.feature-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), var(--shadow-glow);
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.how-it-works {
    position: relative;
    padding: 5rem 1.5rem;
    z-index: 1;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--border);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

.cta {
    position: relative;
    padding: 5rem 1.5rem;
    z-index: 1;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 32px;
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 40%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10%, 10%);
    }
}

.cta-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
    position: relative;
}

.cta-button {
    position: relative;
}

.footer {
    position: relative;
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
    z-index: 1;
    background: var(--bg-darker);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    gap: 1rem;
    border: 1px solid var(--border);
    border-top: none;
    animation: slideDown 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.nav-links.mobile-open .nav-link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.nav-links.mobile-open .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0.5rem;
    }

    .btn-primary {
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .stats {
        padding: 2rem 1rem 3rem;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem 0.75rem;
        border-radius: 16px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .features {
        padding: 3rem 1rem;
    }

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

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.25rem;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .cta-container {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .how-it-works {
        padding: 3rem 1rem;
    }
}

@media (max-width: 400px) {
    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

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

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@supports (padding-top: env(safe-area-inset-top)) {
    .nav {
        padding-top: max(1rem, env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

.slider-btn-text {
    position: relative;
    height: 24px;
    width: 260px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.slider-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.slider-item.exit {
    opacity: 0;
    transform: translateY(100%);
}

@media (max-width: 768px) {
    .slider-btn-text {
        width: auto;
        min-width: 180px;
        display: none;
    }

    .btn-primary .static-text {
        display: inline-block;
    }
}

@media (min-width: 769px) {
    .btn-primary .static-text {
        display: none;
    }
}

.app-gallery {
    padding: 0 1.5rem 6rem;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 16/10;
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.2);
    border-color: var(--primary-light);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-full {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item-full {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }
}

.stat-value.users-stat {
    font-size: clamp(2rem, 5vw, 2.5rem);
    letter-spacing: 2px;
    white-space: nowrap;
}

.phone-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 45px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 0 2px #333,
        0 0 0 6px #1a1a1a,
        0 25px 60px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: rotate(0) scale(1.02);
}

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

.phone-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.phone-screen img.active {
    opacity: 1;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.phone-info {
    max-width: 500px;
}

.phone-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list-check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-list-check li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list-check li svg {
    color: var(--success);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .phone-showcase {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .phone-info {
        padding: 0 1.5rem;
    }

    .feature-list-check {
        align-items: flex-start;
        text-align: left;
        display: inline-flex;
    }

    .phone-info ul {
        display: inline-flex;
    }

    .phone-mockup {
        transform: rotate(0);
        margin-bottom: 1rem;
    }
}

.slider-btn-text {
    width: 250px !important;
    margin-left: 10px;
}

.slider-item {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .slider-btn-text {
        display: inline-block !important;
        width: 180px !important;
        min-width: unset !important;
    }

    .btn-primary .static-text {
        display: none !important;
    }

    .btn-primary {
        padding: 1rem 1rem;
        justify-content: center;
    }

    .btn-primary svg {
        display: none;
    }

    .slider-btn-text {
        text-align: center;
        margin-left: 0;
    }

    .slider-item {
        justify-content: center;
    }
}

.stat-value.users-stat {
    font-size: 2.2rem !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
    min-width: 120px;
    display: inline-block;
}

@media (max-width: 768px) {
    .stat-value.users-stat {
        font-size: 1.8rem !important;
    }

    .stat-card {
        padding: 1rem 0.5rem;
    }
}

.phone-notch {
    display: none !important;
}

.phone-mockup {
    border-radius: 36px;
    border: 6px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
    width: 290px;
    height: 600px;
}

.phone-screen {
    border-radius: 30px;
    border: 2px solid #000;
}

@media (max-width: 768px) {

    .slider-btn-text {
        width: 240px !important;
    }

    .slider-item {
        font-size: 0.85rem !important;
        letter-spacing: -0.2px;
    }

    .btn-primary {
        padding-left: 5px !important;
        padding-right: 5px !important;
        width: 90%;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .btn-primary {
        margin: 0 auto !important;
        padding: 0.8rem !important;
        width: 90% !important;
        max-width: 320px;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .slider-btn-text {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        margin: 0 !important;
    }

    .slider-item {
        font-size: 0.9rem !important;
        letter-spacing: -0.2px;
        width: 100%;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
    }

    .stats-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: min(100%, 350px) !important;
        max-width: 350px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .stats {
        display: flex;
        justify-content: center;
    }

    .stat-card {
        padding: 2rem 1.5rem !important;
        text-align: center;
    }
}

.stat-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100%;
}

.stat-value {
    min-height: 90px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stat-label {
    margin-top: auto !important;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stat-value {
        font-size: 3rem !important;
    }

    .stat-value.users-stat {
        font-size: 2.5rem !important;
    }

    .stat-label {
        font-size: 1.1rem !important;
        font-weight: 500;
        color: #ddd;
    }
}

.feature-icon img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.95;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hero-copy {
    width: 100%;
}

.hero-preview-wrap {
    display: none;
    justify-content: center;
}

.hero-phone-mockup {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: min(100%, 292px);
    height: 590px;
    transform: rotate(-1.8deg);
}

@media (min-width: 992px) {
    .hero {
        min-height: calc(100vh - 16px);
        padding: 7.8rem 1.5rem 3.5rem;
        text-align: left;
    }

    .hero-content {
        max-width: 1240px;
    }

    .hero-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 450px);
        align-items: center;
        gap: clamp(2rem, 4vw, 4rem);
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-subtitle {
        margin: 0 0 2rem 0;
        max-width: 620px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

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

    .hero-phone-mockup:hover {
        transform: rotate(0deg) scale(1.01);
    }

    .app-gallery-mobile {
        display: none !important;
    }

    .stats {
        padding-top: 2rem;
    }

    .stat-card:nth-child(2) {
        border-color: rgba(124, 58, 237, 0.48);
        box-shadow: 0 18px 42px rgba(124, 58, 237, 0.2);
    }
}

