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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C5F8D;
    background: #fff;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff, #F8F6F1, #fff);
}

.decorative-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L30 55M5 30L55 30M15 15L45 45M45 15L15 45' stroke='%231E3A5F' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.glow-gold {
    top: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: #E8B84D;
    opacity: 0.15;
}

.glow-blue {
    bottom: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: #5B9BD5;
    opacity: 0.15;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        order: 1;
    }
}

.cross-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgba(232, 184, 77, 0.2), rgba(232, 184, 77, 0.05));
    border: 1px solid rgba(232, 184, 77, 0.2);
    font-size: 2rem;
    color: #E8B84D;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #2C5F8D;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: normal;
    color: #5B9BD5;
    margin-top: 0.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(44, 95, 141, 0.7);
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-text {
        margin-left: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #2C5F8D;
    color: white;
    box-shadow: 0 10px 25px rgba(44, 95, 141, 0.2);
}

.btn-primary:hover {
    background: #3A6FA5;
    box-shadow: 0 15px 30px rgba(44, 95, 141, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #E8B84D;
    border: 2px solid #E8B84D;
}

.btn-outline:hover {
    background: #E8B84D;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #E8B84D;
    border: 2px solid #E8B84D;
}

.btn-outline-light:hover {
    background: #E8B84D;
    color: white;
}

.btn-donation {
    background: linear-gradient(to right, #E8B84D, #D9A73D);
    color: white;
    box-shadow: 0 10px 25px rgba(232, 184, 77, 0.2);
}

.btn-donation:hover {
    box-shadow: 0 15px 30px rgba(232, 184, 77, 0.4);
    transform: translateY(-2px);
}

.btn-candle {
    width: 100%;
    background: linear-gradient(to right, #E8B84D, #D9A73D);
    color: white;
    box-shadow: 0 10px 25px rgba(232, 184, 77, 0.3);
}

.btn-candle:hover {
    box-shadow: 0 15px 30px rgba(232, 184, 77, 0.4);
    transform: translateY(-2px);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

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

@media (min-width: 1024px) {
    .app-badges {
        justify-content: flex-start;
    }
}

.app-badges img {
    height: 2.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.app-badges img:hover {
    opacity: 1;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

@media (min-width: 1024px) {
    .phone-mockup {
        order: 2;
    }
}

.phone-frame {
    position: relative;
    background: #2C5F8D;
    border-radius: 3rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px rgba(44, 95, 141, 0.3);
}

.phone-screen {
    background: #FEFDFB;
    border-radius: 2.5rem;
    width: 16rem;
    height: 31.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .phone-screen {
        width: 18rem;
        height: 34.375rem;
    }
}

.phone-status-bar {
    background: #2C5F8D;
    color: white;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

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

.phone-icon {
    font-size: 2.5rem;
    color: #E8B84D;
}

.phone-title {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.25rem;
    color: #2C5F8D;
    margin-top: 0.5rem;
}

.phone-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-item {
    background: #F5F0E8;
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: rgba(232, 184, 77, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8B84D;
    font-size: 0.875rem;
}

.menu-item span:last-child {
    font-size: 0.875rem;
    color: #2C5F8D;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-indicator .icon {
    width: 2rem;
    height: 2rem;
    color: rgba(232, 184, 77, 0.6);
    fill: currentColor;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

.animate-slide-in {
    animation: slideIn 0.8s ease-out 0.3s backwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(232, 184, 77, 0.1);
    font-size: 1.5rem;
    color: #E8B84D;
}

.prayers-icon {
    background: rgba(232, 184, 77, 0.2);
}

.prayers-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #E8B84D;
}

.candle-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, rgba(232, 184, 77, 0.2), rgba(232, 184, 77, 0.05));
    border: 1px solid rgba(232, 184, 77, 0.2);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: bold;
    color: #2C5F8D;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(44, 95, 141, 0.6);
    max-width: 42rem;
    margin: 0 auto;
}

.highlight {
    color: #E8B84D;
}

/* Donation Section */
.donation-section {
    background: linear-gradient(to bottom, #fff, #F8F6F1);
    position: relative;
    overflow: hidden;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.section-content {
    animation: fadeIn 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(232, 184, 77, 0.1);
    color: #E8B84D;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.badge .icon {
    width: 1rem;
    height: 1rem;
}

.section-text {
    font-size: 1.125rem;
    color: rgba(44, 95, 141, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #2C5F8D, #5B9BD5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
}

.benefit-item h4 {
    font-weight: 600;
    color: #2C5F8D;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: rgba(44, 95, 141, 0.6);
}

.benefit-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2C5F8D;
}

.benefit-check::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(232, 184, 77, 0.2);
    color: #E8B84D;
    flex-shrink: 0;
}

.donation-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(232, 184, 77, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #E8B84D, #D9A73D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon svg {
    width: 2rem;
    height: 2rem;
    fill: white;
}

.donation-card h3 {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2C5F8D;
    margin-bottom: 0.5rem;
}

.donation-card > p {
    color: rgba(44, 95, 141, 0.6);
    margin-bottom: 1.5rem;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(to right, #F8F6F1, white);
    border: 1px solid rgba(44, 95, 141, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.project-item:hover {
    border-color: rgba(232, 184, 77, 0.3);
}

.project-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.project-item:hover .project-icon {
    transform: scale(1.1);
}

.project-icon-1 {
    background: linear-gradient(to bottom right, #f59e0b, #f97316);
}

.project-icon-2 {
    background: linear-gradient(to bottom right, #3b82f6, #6366f1);
}

.project-icon-3 {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.project-item span {
    font-weight: 500;
    color: #2C5F8D;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 95, 141, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E8B84D;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(44, 95, 141, 0.6);
}

/* Gallery Section */
.gallery-section {
    background: white;
    position: relative;
}

.gallery-section::before,
.gallery-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 184, 77, 0.4), transparent);
}

.gallery-section::before {
    top: 0;
}

.gallery-section::after {
    bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 95, 141, 0.8), rgba(44, 95, 141, 0.3), transparent);
    opacity: 0.6;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}

.gallery-overlay h3 {
    font-family: Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(-0.5rem);
}

.gallery-note {
    text-align: center;
    color: rgba(44, 95, 141, 0.6);
    max-width: 42rem;
    margin: 3rem auto 0;
}

/* Features Section */
.features-section {
    background: white;
    position: relative;
}

.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 184, 77, 0.4), transparent);
}

.features-section::before {
    top: 0;
}

.features-section::after {
    bottom: 0;
}

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

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, #F8F6F1, white);
    border: 1px solid rgba(232, 184, 77, 0.2);
    transition: all 0.5s;
}

.feature-card:hover {
    border-color: rgba(232, 184, 77, 0.4);
    box-shadow: 0 10px 25px rgba(232, 184, 77, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #2C5F8D, #5B9BD5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: #E8B84D;
}

.feature-card h3 {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C5F8D;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(44, 95, 141, 0.6);
    line-height: 1.6;
}

/* Prayers Section */
.prayers-section {
    background: linear-gradient(to bottom, #5B9BD5, #2C5F8D);
    position: relative;
    overflow: hidden;
    color: white;
}

.prayers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.prayers-section .section-header {
    position: relative;
    z-index: 10;
}

.prayers-section .section-title,
.prayers-section .section-description {
    color: white;
}

.prayers-section .section-description {
    opacity: 0.6;
}

.prayers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .prayers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.prayer-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s;
    cursor: pointer;
}

.prayer-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(232, 184, 77, 0.5);
}

.prayer-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(232, 184, 77, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8B84D;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.prayer-card:hover .prayer-icon {
    background: rgba(232, 184, 77, 0.4);
}

.prayer-card h3 {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.prayer-subtitle {
    color: #E8B84D;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.prayer-preview {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prayer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #E8B84D;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s;
}

.prayer-card:hover .prayer-link {
    gap: 0.75rem;
}

.prayer-link .icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.prayer-card:hover .prayer-link .icon {
    transform: translateX(0.25rem);
}

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

/* Candle Section */
.candle-section {
    background: linear-gradient(to bottom, #F8F6F1, white);
    position: relative;
    overflow: hidden;
}

.candle-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 184, 77, 0.4), transparent);
}

.candle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .candle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.candle-demo {
    order: 2;
}

@media (min-width: 1024px) {
    .candle-demo {
        order: 1;
    }
}

.candle-form {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(232, 184, 77, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.candle-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.candle-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: #F8F6F1;
    color: rgba(44, 95, 141, 0.6);
}

.candle-tab.active {
    background: linear-gradient(to right, #2C5F8D, #5B9BD5);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

.candle-tab:hover:not(.active) {
    background: rgba(248, 246, 241, 0.7);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2C5F8D;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(44, 95, 141, 0.2);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #E8B84D;
    box-shadow: 0 0 0 3px rgba(232, 184, 77, 0.2);
}

.candle-animation {
    position: relative;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
}

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

.flame {
    width: 4rem;
    height: 6rem;
    background: linear-gradient(to top, #E8B84D, #ff9800, #ff5722);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(2px);
    position: relative;
    z-index: 2;
    animation: flicker 1.5s infinite ease-in-out;
}

.flame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 4rem;
    background: linear-gradient(to top, #fef08a, white);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(1px);
    opacity: 0.7;
    animation: flicker2 1s infinite ease-in-out;
}

@keyframes flicker {
    0%, 100% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(1.1) scaleX(0.95);
    }
}

@keyframes flicker2 {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.flame::before {
    content: '';
    position: absolute;
    inset: -2rem;
    background: radial-gradient(circle, rgba(232, 184, 77, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.candle-body {
    width: 3rem;
    height: 8rem;
    background: linear-gradient(to bottom, #F5E6D3, #E8D4B8);
    border-radius: 0.5rem;
    margin-top: -0.5rem;
    position: relative;
    z-index: 1;
}

.candle-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: #D9C4A8;
    border-radius: 0.5rem 0.5rem 0 0;
}

.candle-notification {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(232, 184, 77, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(232, 184, 77, 0.2);
    font-size: 0.875rem;
    color: #2C5F8D;
    text-align: center;
}

.candle-features {
    order: 1;
}

@media (min-width: 1024px) {
    .candle-features {
        order: 2;
    }
}

.candle-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.candle-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(232, 184, 77, 0.2), rgba(232, 184, 77, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.candle-feature:hover .candle-feature-icon {
    transform: scale(1.1);
}

.candle-feature h4 {
    font-weight: 600;
    color: #2C5F8D;
    margin-bottom: 0.25rem;
}

.candle-feature p {
    font-size: 0.875rem;
    color: rgba(44, 95, 141, 0.6);
    line-height: 1.6;
}

/* Download Section */
.download-section {
    background: #F8F6F1;
    position: relative;
    overflow: hidden;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .download-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.download-phone {
    display: flex;
    justify-content: center;
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .download-phone {
        order: 1;
    }
}

.phone-frame-dark {
    position: relative;
    background: linear-gradient(to bottom, #3A3A3A, #2A2A2A);
    border-radius: 3rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen-dark {
    background: #2C5F8D;
    border-radius: 2.5rem;
    width: 16rem;
    height: 31.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

@media (min-width: 640px) {
    .phone-screen-dark {
        width: 18rem;
        height: 34.375rem;
    }
}

.phone-header-dark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.phone-header-dark .phone-icon {
    font-size: 1.5rem;
    color: #E8B84D;
}

.phone-header-dark span:last-child {
    font-family: Georgia, serif;
}

.phone-content-dark {
    flex: 1;
    background: #1E4A6F;
    border-radius: 0.75rem;
    padding: 1rem;
}

.phone-content-dark h4 {
    color: #E8B84D;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.phone-content-dark p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.phone-content-dark p:last-child {
    color: rgba(255, 255, 255, 0.5);
}

.rating-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #E8B84D;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.rating-badge p {
    font-size: 0.75rem;
    color: rgba(44, 95, 141, 0.6);
}

.download-content {
    order: 1;
}

@media (min-width: 1024px) {
    .download-content {
        order: 2;
    }
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .store-buttons {
        flex-direction: row;
    }
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}

.store-btn-apple {
    background: #1E3A5F;
    color: white;
}

.store-btn-apple:hover {
    background: #2A4A6F;
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.2);
}

.store-btn-google {
    background: #2C5F8D;
    color: white;
}

.store-btn-google:hover {
    background: #3A6FA5;
    box-shadow: 0 10px 25px rgba(44, 95, 141, 0.2);
}

.store-btn svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: currentColor;
}

.store-btn div small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.6;
}

.store-btn div strong {
    display: block;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #2C5F8D;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 184, 77, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 640px) {
    .footer-brand {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(232, 184, 77, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #E8B84D;
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(232, 184, 77, 0.2);
}

.footer-column h4 {
    font-weight: 600;
    color: #E8B84D;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom p {
        text-align: left;
    }
}