/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 100%);
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-mobile-demo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-phone {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.floating-phone:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.hero-phone {
    width: 280px;
    height: 560px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-brand {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary-gold);
    margin-bottom: 0.65rem;
}

.hero-brand .hebrew {
    color: var(--charcoal);
    font-weight: 500;
    opacity: 0.85;
}

:is(html.theme-dark, body.theme-dark) .hero-brand .hebrew {
    color: var(--primary-gold);
    opacity: 1;
}

:is(html.theme-dark, body.theme-dark) .product-shot-title,
:is(html.theme-dark, body.theme-dark) .diff-pill h3,
:is(html.theme-dark, body.theme-dark) .product-moment h3 {
    color: var(--charcoal);
}

:is(html.theme-dark, body.theme-dark) .product-check .mark {
    background: var(--primary-gold);
    color: #0A1421;
}

:is(html.theme-dark, body.theme-dark) .product-check:not(.done) .mark {
    background: transparent;
    border-color: rgba(232, 196, 124, 0.35);
}

:is(html.theme-dark, body.theme-dark) .product-jolt {
    background: #0A1421;
}

.hero .subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: var(--deep-blue);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta-primary:hover {
    background: #1A252F;
    transform: translateY(-1px);
    color: white;
}

.hero-stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 14px;
}

.hero-stores img {
    height: 48px;
    width: auto;
    display: block;
}

.hero-privacy-note {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--gray);
}

.product-shot {
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, var(--cream) 0%, var(--parchment) 100%);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    overflow: hidden;
}

.product-shot-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
}

.product-shot-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.25;
}

.product-shot-card {
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--surface-border);
    padding: 12px;
}

.product-shot-card p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--charcoal);
}

.product-shot-card .meta {
    margin-top: 6px;
    font-size: 0.65rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
}

.product-check.done {
    background: rgba(143, 175, 158, 0.15);
}

.product-check .mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    background: var(--deep-blue);
    color: white;
    flex-shrink: 0;
}

.product-check:not(.done) .mark {
    background: transparent;
    border: 2px solid rgba(44, 62, 80, 0.25);
    color: transparent;
}

.product-jolt {
    margin-top: auto;
    border-radius: 14px;
    padding: 12px;
    background: var(--deep-blue);
    color: white;
}

.product-jolt strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.product-jolt span {
    font-size: 0.72rem;
    opacity: 0.85;
}

.differentiator-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.diff-pill {
    text-align: center;
    padding: 18px 14px;
    border-radius: 14px;
    border: 1px solid var(--surface-border);
    background: var(--surface-muted);
}

.diff-pill h3 {
    font-size: 1rem;
    color: var(--deep-blue);
    margin-bottom: 6px;
}

.diff-pill p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.45;
}

.product-moments {
    display: grid;
    gap: 28px;
    margin-top: 40px;
}

.product-moment {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    background: var(--surface-muted);
}

.product-moment.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.product-moment.reverse .moment-visual {
    order: -1;
}

.product-moment h3 {
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.product-moment p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.moment-visual {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--surface-border);
    min-height: 220px;
    background: linear-gradient(165deg, var(--cream), var(--parchment));
}

.download-compact {
    text-align: center;
    padding: 20px 0 10px;
}

.download-compact .hero-stores {
    justify-content: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}

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

.element-2 {
    top: 20%;
    right: -15%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 30%;
    left: -25%;
    animation-delay: 1s;
}

.element-4 {
    bottom: 10%;
    right: -20%;
    animation-delay: 1.5s;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rotating-quotes {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.quote-text {
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
    position: absolute;
    width: 100%;
}

.quote-text.active {
    opacity: 1;
    transform: translateY(0);
}

.quote-author {
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-top: 8px;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
    flex: 1;
    max-width: 150px;
}

.badge:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.badge-text {
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-hero-primary {
    padding: 22px 48px;
    font-size: 1.1rem;
    min-width: 240px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.app-store-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.app-store-badges a {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.app-store-badges a:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.btn::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.6s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--amber) 100%);
    color: white;
    box-shadow: 
        0 8px 25px rgba(212, 165, 116, 0.3),
        0 3px 10px rgba(212, 165, 116, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(212, 165, 116, 0.4),
        0 5px 15px rgba(212, 165, 116, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--amber) 100%);
    color: white;
    box-shadow: 
        0 12px 35px rgba(212, 165, 116, 0.4),
        0 5px 15px rgba(212, 165, 116, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 45px rgba(212, 165, 116, 0.5),
        0 8px 20px rgba(212, 165, 116, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 
            0 12px 35px rgba(212, 165, 116, 0.4),
            0 5px 15px rgba(212, 165, 116, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 12px 35px rgba(212, 165, 116, 0.6),
            0 5px 15px rgba(212, 165, 116, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    color: var(--charcoal);
    border: 2px solid var(--primary-gold);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

:is(html.theme-dark, body.theme-dark) .btn-secondary {
    background: linear-gradient(135deg, rgba(21, 27, 36, 0.95) 0%, rgba(15, 19, 26, 0.95) 100%);
    color: var(--charcoal);
    border: 2px solid var(--primary-gold);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--amber) 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(212, 165, 116, 0.4),
        0 5px 15px rgba(212, 165, 116, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.how-it-works-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

:is(html.theme-dark, body.theme-dark) .step-card {
    background: rgba(21, 27, 36, 0.92);
    border: 1px solid rgba(232, 196, 124, 0.18);
    color: var(--charcoal);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.step-card p {
    color: var(--gray);
    line-height: 1.6;
}

:is(html.theme-dark, body.theme-dark) .step-card h3,
:is(html.theme-dark, body.theme-dark) .step-card p {
    color: var(--charcoal);
}

.tutorial-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

:is(html.theme-dark, body.theme-dark) .tutorial-section {
    background: rgba(21, 27, 36, 0.92);
    border: 1px solid rgba(232, 196, 124, 0.18);
}

.tutorial-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 30px;
    text-align: center;
}

:is(html.theme-dark, body.theme-dark) .tutorial-section h3 {
    color: var(--charcoal);
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tutorial-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--parchment);
    border-radius: 12px;
}

:is(html.theme-dark, body.theme-dark) .tutorial-step {
    background: rgba(15, 19, 26, 0.8);
    border: 1px solid rgba(232, 196, 124, 0.1);
}

.tutorial-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tutorial-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.tutorial-content p {
    color: var(--gray);
    line-height: 1.6;
}

:is(html.theme-dark, body.theme-dark) .tutorial-content h4,
:is(html.theme-dark, body.theme-dark) .tutorial-content p {
    color: var(--charcoal);
}

.tutorial-content a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.tutorial-content a:hover {
    text-decoration: underline;
}

/* Feature Showcases */
.feature-showcases {
    margin: 60px 0;
}

.feature-showcases h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 50px;
}

.feature-showcase {
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

:is(html.theme-dark, body.theme-dark) .feature-showcase {
    background: rgba(21, 27, 36, 0.92);
    border: 1px solid rgba(232, 196, 124, 0.18);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-benefits li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 25px;
}

.feature-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

:is(html.theme-dark, body.theme-dark) .showcase-text h4,
:is(html.theme-dark, body.theme-dark) .showcase-text p,
:is(html.theme-dark, body.theme-dark) .feature-benefits li {
    color: var(--charcoal);
}

/* Phone Mockups */
.phone-mockup-small {
    width: 200px;
    height: 400px;
    margin: 0 auto;
}

.phone-frame-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.phone-screen-small {
    width: 100%;
    height: 100%;
    background: var(--parchment);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

:is(html.theme-dark, body.theme-dark) .phone-screen-small {
    background: var(--cream);
}

.mockup-header {
    text-align: center;
    margin-bottom: 20px;
}

.mockup-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.mockup-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Tzedakah Mockup */
.mockup-tzedakah {
    text-align: center;
}

.tzedakah-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tzedakah-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.tzedakah-goal {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.progress-bar-mockup {
    width: 100%;
    height: 8px;
    background: rgba(189, 195, 199, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill-mockup {
    height: 100%;
    background: var(--primary-gold);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.tzedakah-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-btn {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.mockup-btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

/* Zmanim Mockup */
.mockup-zmanim {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zman-row-mockup {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(189, 195, 199, 0.2);
}

.zman-row-mockup:last-child {
    border-bottom: none;
}

.zman-icon {
    font-size: 1.2rem;
    width: 20px;
}

.zman-label {
    flex: 1;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.zman-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
}

/* Streak Mockup */
.mockup-streak {
    text-align: center;
}

.streak-flame {
    font-size: 3rem;
    margin-bottom: 10px;
}

.streak-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.streak-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.calendar-mockup {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.calendar-day {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.calendar-day.completed {
    background: var(--primary-gold);
    color: white;
}

.calendar-day.current {
    background: var(--sage);
    color: white;
}

.achievement-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--amber));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .phone-mockup-small {
        width: 180px;
        height: 360px;
    }

    .feature-showcase {
        padding: 30px 20px;
    }
}

/* Inspiration Section */
.inspiration-section {
    padding: 60px 0;
    background: var(--cream);
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--charcoal);
    margin-bottom: 60px;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

/* Privacy Section */
.privacy {
    padding: 80px 0;
    background: var(--parchment);
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.privacy p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.privacy-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-icon {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    .header .container {
        padding-right: 90px;
    }

    .nav {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        min-height: 40px;
    }

    .nav-actions {
        display: flex;
        margin-left: auto;
    }

    .lightning-menu-toggle {
        margin-right: 8px;
        font-size: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
    }

    .lightning-icon {
        font-size: 20px;
        line-height: 1;
    }

    .logo {
        font-size: 20px;
        flex: 0 1 auto;
        white-space: nowrap;
        line-height: 1;
        display: inline-flex;
        align-items: center;
    }

    .hebrew-blessing {
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 12px;
        line-height: 1;
    }

    .menu-tray {
        width: 85vw;
        min-width: 280px;
    }

    .menu-tray-content {
        width: 85vw;
        min-width: 280px;
    }

    .menu-watermark {
        font-size: 150px;
    }

    .theme-toggle {
        flex-shrink: 0;
    }

    .hero-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

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

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .trust-badges {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
        padding: 10px 8px;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-store-badges {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
    }

    .app-store-badges img {
        height: 44px !important;
    }

    .app-store-badges > a:first-child > div {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn-hero-primary {
        font-size: 1rem;
        padding: 20px 40px;
        min-width: 200px;
    }

    .floating-phone {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .hero-phone {
        width: 250px;
        height: 500px;
    }

    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .app-store-badges {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .app-store-badges > a {
        width: 100%;
    }

    .app-store-badges > a:first-child > div {
        width: 100%;
        justify-content: center;
    }

    .app-store-badges img {
        width: 100%;
        max-width: 180px;
        height: auto !important;
    }

    .hero-phone {
        width: 220px;
        height: 440px;
    }

    .desktop-demo-header h2 {
        font-size: 2rem;
    }

    .wide-frame {
        height: 400px;
    }

    .desktop-demo-actions {
        flex-direction: column;
        align-items: center;
    }

    .desktop-demo-actions .btn {
        width: 100%;
        max-width: 250px;
    }


    .hebrew-blessing {
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        font-size: 11px;
        z-index: 1001;
        line-height: 1;
    }

    .logo {
        font-size: 18px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
    }

    .lightning-menu-toggle {
        margin-right: 6px;
        font-size: 18px;
        height: 18px;
        display: inline-flex;
        align-items: center;
    }

    .lightning-icon {
        font-size: 18px;
        line-height: 1;
    }

    .nav {
        gap: 6px;
        min-height: 36px;
        align-items: center;
    }

    .header .container {
        padding-right: 60px;
    }

    .menu-tray {
        width: 90vw;
    }

    .menu-tray-content {
        width: 90vw;
        padding: 70px 24px 24px;
    }

    .menu-watermark {
        font-size: 120px;
    }

    .menu-link {
        font-size: 16px;
        padding: 14px 18px;
    }

    .rotating-quotes {
        font-size: 1rem;
        min-height: 80px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .quote-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .quote-author {
        font-size: 0.8rem;
        margin-top: 6px;
    }

    .trust-badges {
        gap: 10px;
    }

    .badge {
        min-width: 70px;
        max-width: 100px;
        padding: 8px 6px;
    }

    .badge-text {
        font-size: 0.7rem;
    }

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* App Store Badges */
.app-store-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-store-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

/* Live App Demo Styles */
.app-demo {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.demo-container {
    text-align: center;
    max-width: 1000px;
}

.demo-versions {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin: 40px 0;
}

.demo-version {
    flex: 1;
    max-width: 400px;
}

.demo-version h4 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 600;
}

.demo-header {
    margin-bottom: 30px;
}

.demo-header h3 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.demo-header p {
    color: var(--gray);
    font-size: 1rem;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
}

.desktop-mockup {
    position: relative;
    width: 400px;
    height: 300px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #34495e;
    border-radius: 2px;
}

.desktop-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.desktop-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 20px;
    background: #34495e;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-frame::after {
    content: '● ● ●';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #7f8c8d;
    font-size: 8px;
    letter-spacing: 4px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #F5F1E8;
    border-radius: 30px;
    overflow-y: auto;
    position: relative;
}

.desktop-screen {
    width: 100%;
    height: 100%;
    background: #F5F1E8;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-gold);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

.loader-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.app-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
    background: var(--cream);
}

.iframe-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--cream);
    border-radius: 30px;
}

.fallback-content {
    text-align: center;
    padding: 40px 20px;
}

.fallback-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.fallback-content h4 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.fallback-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.demo-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-actions .btn {
    min-width: 140px;
}

/* Desktop Demo Section */
.desktop-demo-section {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.desktop-demo-header {
    margin-bottom: 60px;
}

.desktop-demo-header h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.desktop-demo-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.desktop-demo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.wide-desktop-mockup {
    margin-bottom: 40px;
}

.wide-frame {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.wide-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    height: 25px;
    background: #34495e;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wide-frame::after {
    content: '● ● ●';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: #7f8c8d;
    font-size: 10px;
    letter-spacing: 6px;
}

.wide-screen {
    width: 100%;
    height: 100%;
    background: #F5F1E8;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.wide-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background: var(--cream);
}

.desktop-demo-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.desktop-demo-actions .btn {
    min-width: 180px;
}

/* App Store Section */
.app-store-section {
    padding: 60px 0;
    background: var(--parchment);
    text-align: center;
}

.app-store-content h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.app-store-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.app-store-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

/* Responsive Demo Styles */
@media (max-width: 768px) {
    .demo-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .demo-versions {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .demo-version {
        max-width: 100%;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .desktop-mockup {
        width: 350px;
        height: 260px;
    }
    
    .demo-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .desktop-mockup {
        width: 300px;
        height: 220px;
    }
    
    .demo-header h3 {
        font-size: 1.5rem;
    }
    
    .demo-versions {
        gap: 20px;
    }
}

/* Screen Header */
.screen-header {
    margin-bottom: 24px;
}

.greeting {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.date {
    font-size: 16px;
    color: #7F8C8D;
}

/* Quote Card */
.quote-card {
    background: linear-gradient(135deg, #E8D5B7, #D4A574);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.quote {
    font-size: 15px;
    color: #2C3E50;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 8px;
}

.quote-author {
    font-size: 12px;
    color: #2C3E50;
    opacity: 0.8;
}

/* Streak Card */
.streak-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.flame {
    font-size: 48px;
    text-align: center;
}

.streak-text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 4px;
}

.streak-text p {
    font-size: 14px;
    color: #7F8C8D;
}

/* Progress Card */
.progress-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.progress-text {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.progress-bar {
    height: 8px;
    background: rgba(189, 195, 199, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #4CAF50;
    border-radius: 4px;
    width: 60%;
    transition: width 0.3s ease;
}

/* Section Title */
.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

/* Practice Cards */
.practice-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.practice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.practice-card.completed {
    background: rgba(143, 175, 158, 0.15);
}

.practice-icon {
    width: 40px;
    height: 40px;
    background: #E8D5B7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.practice-text {
    flex: 1;
}

.practice-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.practice-card.completed .practice-title {
    text-decoration: line-through;
    color: #7F8C8D;
}

.practice-description {
    font-size: 14px;
    color: #7F8C8D;
}

.checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #BDC3C7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.practice-card.completed .checkbox {
    background: #4CAF50;
    border-color: #4CAF50;
}

.checkmark {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .differentiator-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-moment,
    .product-moment.reverse {
        grid-template-columns: 1fr;
    }
    .product-moment.reverse .moment-visual {
        order: 0;
    }
    .hero .subtitle,
    .hero-brand {
        text-align: center;
    }
    .cta-buttons {
        align-items: center;
    }
    .hero-stores {
        justify-content: center;
    }
}
@media (max-width: 560px) {
    .differentiator-strip {
        grid-template-columns: 1fr;
    }
}

    