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

:root {
    /* Apple-inspired Color Scheme */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-dark: #000000;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-white: #ffffff;
    --accent: #0071e3;
    --border: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.47059;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
}

.container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navigation - Apple Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 44px;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 21px;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    padding: 0 10px;
    transition: opacity 0.3s ease;
    display: block;
    height: 44px;
    line-height: 44px;
}

.nav-links a:hover {
    opacity: 0.65;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section - Apple Style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--bg-primary);
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-pattern {
    display: none;
}

.hero-gradient-1,
.hero-gradient-2 {
    display: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: none;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    text-transform: none;
}

.title-line {
    display: block;
    opacity: 0;
}

.title-line.line-1 {
    color: var(--text-primary);
    margin-bottom: 0;
}

.title-line.line-2 {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(21px, 3vw, 28px);
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.14286;
    font-weight: 400;
    max-width: 100%;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 980px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 17px;
    position: relative;
    background: var(--accent);
    color: var(--text-white);
    overflow: hidden;
}

.btn::before {
    display: none;
}

.btn:hover {
    background: #0077ed;
    transform: scale(1.02);
}

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

.btn-primary:hover {
    background: #0077ed;
    color: var(--text-white);
}

.btn-large {
    padding: 14px 28px;
    font-size: 19px;
}

.hero-stats {
    display: none;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.phone-mockup {
    width: 375px;
    height: 812px;
    background: #000000;
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 10;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px;
    display: block;
}

.app-header {
    padding: 12px 20px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.status-icons span {
    width: 17px;
    height: 10px;
    background: var(--text-white);
    border-radius: 2px;
    opacity: 0.9;
}

.profile-icon {
    font-size: 20px;
    color: var(--text-white);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.profile-icon:hover {
    opacity: 0.7;
}

.quote-card-animated {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    position: relative;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.quote-date-tag {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-white);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-category-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-text-animated {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    transition: opacity 0.5s ease;
    max-width: 100%;
}

.quote-author-animated {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-style: italic;
    text-align: right;
    width: 100%;
    padding-right: 30px;
    transition: opacity 0.5s ease;
}

.progress-section {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    padding: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.progress-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.metric-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.metric-number {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.floating-elements {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
    0% { opacity: 0; transform: translate(-50%, -5px); }
    50% { opacity: 1; transform: translate(-50%, 5px); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* Features Section - Apple Style */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 100%;
}

.section-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    line-height: 1.05;
    text-transform: none;
}

.section-subtitle {
    font-size: clamp(19px, 2.5vw, 24px);
    color: var(--text-secondary);
    line-height: 1.16667;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
}

.feature-card {
    background: transparent;
    padding: 0;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.feature-screenshot {
    width: 100%;
    max-width: 300px;
    height: 600px;
    margin: 0 auto 24px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card:hover .feature-screenshot {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.47059;
    font-size: 17px;
    font-weight: 400;
}

/* How It Works Section - Apple Style */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.how-it-works::before {
    display: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.step-number {
    font-size: 80px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    letter-spacing: -0.02em;
}

.step-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.47059;
    font-size: 17px;
    font-weight: 400;
}

/* Download Section - Apple Style */
.download {
    padding: 120px 0;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.download::before {
    display: none;
}

.download-content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    line-height: 1.05;
    text-transform: none;
}

.download-subtitle {
    font-size: clamp(19px, 2.5vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.16667;
    font-weight: 400;
}

/* Footer - Apple Style */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-primary);
    border-top: 0.5px solid var(--border);
    position: relative;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-logo .logo-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.47059;
    font-weight: 400;
    font-size: 12px;
}

.footer-title {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.social-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.google-play-logo {
    width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 0.5px solid var(--border);
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 12px;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 980px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border: none;
}

.legal-content h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    text-transform: none;
}

.legal-content h2 {
    font-size: clamp(28px, 3vw, 32px);
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-primary);
    line-height: 1.47059;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 17px;
}

.legal-content ul, .legal-content ol {
    color: var(--text-primary);
    margin-left: 20px;
    margin-bottom: 16px;
    line-height: 1.47059;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 17px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 40px;
    font-weight: 400;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
    font-weight: 400;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 980px;
    font-size: 14px;
}

.back-link:hover {
    opacity: 0.7;
    background: var(--bg-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 22px;
    }

    .hero-content {
        gap: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .section-title {
        font-size: 40px;
    }

    .download-title {
        font-size: 40px;
    }

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

    .features, .how-it-works, .download {
        padding: 80px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-content {
        padding: 0;
    }

    .legal-content h1 {
        font-size: 40px;
    }

    .legal-content h2 {
        font-size: 28px;
    }

    .phone-mockup {
        width: 320px;
        height: 693px;
    }

    .quote-text-animated {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    .phone-mockup {
        width: 280px;
        height: 607px;
    }

    .quote-text-animated {
        font-size: 18px;
    }
}
