:root {
    --primary: #673ab7;
    --primary-dark: #2a2342;
    --primary-light: #673ab7;
    --gold: #eaba2a;
    --gold-light: #eaba2a;
    --accent: #4a7c5c;
    --light: #f8f9fc;
    --light-gray: #eef1f8;
    --dark: #1a202c;
    --text: #4a5568;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(26, 54, 93, 0.08);
    --shadow-heavy: 0 20px 60px rgba(26, 54, 93, 0.15);
    --radius: 16px;
    --radius-small: 8px;
    --success: #4caf50;
    --error: #f44336;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Premium Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 249, 252, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 22px 0;
    border-bottom: 1px solid rgba(238, 241, 248, 0.8);
    transition: var(--transition);
}

.header.scrolled {
    padding: 16px 0;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 1px;
}

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

.nav-link:hover:after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
    letter-spacing: 0.3px;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(26, 54, 93, 0.25);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--light-gray);
}

/* Hero Section - Premium Redesign */
.hero {
    padding: 200px 0 120px;
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 163, 67, 0.03));
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-tag {
    display: inline-block;
    background: rgba(201, 163, 67, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 163, 67, 0.2);
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.hero-title span {
    color: var(--gold);
    position: relative;
}

.hero-title span:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(201, 163, 67, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--light-gray);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

/* App Showcase - Premium Design */
.app-showcase {
    position: relative;
}

.phone-mockup {
    width: 420px;
    max-width: 90vw;
    aspect-ratio: 9 / 19.2;

    background: var(--primary-dark);
    border-radius: 40px;
    position: relative;
    box-shadow: 
        0 30px 60px rgba(26, 54, 93, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin: 0 auto;
}


.phone-screen {
    position: absolute;
    inset: 12px;
    background: white;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.screen-header {
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    color: white;
}

.screen-date {
    font-size: 14px;
    opacity: 0.9;
}

.screen-title {
    font-size: 18px;
    font-weight: 600;
}

.screen-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.verse-card {
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f4ff 100%);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.verse-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.verse-reference {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verse-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-dark);
    font-family: 'Inter', sans-serif;
}

.progress-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.progress-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.progress-percent {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.progress-bar {
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 78%;
    border-radius: 3px;
}

.notification-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 124, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.notification-text {
    font-size: 14px;
    color: var(--text);
    opacity: 0.8;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 0;
    font-size: 32px;
    color: var(--gold);
    opacity: 0.8;
    filter: drop-shadow(0 5px 15px rgba(201, 163, 67, 0.2));
}

.floating-element-1 {
    top: 20%;
    right: 15%;
    animation: float 8s infinite ease-in-out;
}

.floating-element-2 {
    bottom: 25%;
    left: 10%;
    animation: float 10s infinite ease-in-out 1s;
    color: var(--accent);
}

.floating-element-3 {
    top: 40%;
    right: 25%;
    animation: float 12s infinite ease-in-out 2s;
    color: var(--primary-light);
}

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

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text);
    line-height: 1.7;
}

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

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(26, 54, 93, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f4ff 100%);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 100px;
    font-family: 'Marcellus', serif;
    color: rgba(26, 54, 93, 0.05);
    line-height: 1;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--primary-dark);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
}

.author-info h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.author-role {
    color: var(--text);
    font-size: 14px;
    opacity: 0.8;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Download Section */
.download {
    padding: 120px 0;
    background: white;
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.download-btn {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--primary-dark);
            color: white;
            padding: 20px 32px;
            border-radius: var(--radius);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow);
            min-width: 220px;
            border: 1px solid #ffffff1a;
        }

        .download-btn:hover {
            display: flex;
            align-items: center;
            gap: 16px;
            background: transparent;
            color: #ecbc2b;
            padding: 20px 32px;
            border-radius: var(--radius);
            text-decoration: none;
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);         
            border: 1px solid #ecbc2b;
        }


.download-icon {
    font-size: 32px;
}

.download-text {
    text-align: left;
}

.download-text div:first-child {
    font-size: 12px;
    opacity: 0.9;
}

.download-text div:last-child {
    font-size: 20px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 40px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 24px;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .phone-mockup {
        width: 300px;
        height: 620px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-heavy);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
        .phone-mockup {
        width: 340px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features,
    .testimonials,
    .download {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonial-card {
        padding: 40px 32px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-card {
        padding: 32px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        height: 100vh;
        border-radius: 28px;
    }

    .phone-screen {
        inset: 10px;
        border-radius: 22px;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Screen Animation */
.screen-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.screen-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Content */
.contact {    
    background-color: white;
}
.contact-content {
    padding: 100px 0;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info-container {
    opacity: 0;
    transform: translateX(30px);
}

.contact-info-container.animate {
    animation: slideInRight 0.8s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info-header p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left-color: var(--secondary);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}
.method-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

.method-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--secondary);
}

.office-hours {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.office-hours h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e8;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.time {
    color: var(--gray);
}

.phone-mockup {
    width: 420px;
    margin: auto;
}        

.screenshot-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
}

.screenshot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1s ease, transform 1s ease;
}

.screenshot.active {
    opacity: 1;
    transform: scale(1);
}
.phone-mockup {
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.logo {
    width: 140px;
}
@media (max-width: 360px) {
    .phone-mockup {
        transform: scale(0.95);
    }
}

.footer-bottom a{
    color: #eaba2a;
    text-decoration: none;
}

.footer-bottom a:hover{
    color: #ff9800;
    text-decoration: none;
}
b, .heading {
    color: #673ab7;
    font-weight: 500;    
}

 a{
    color: #673ab7;
    text-decoration: none;
}

a:hover{
    color: #ff9800;
    text-decoration: none;
}

.logo-promo {
    width: 260px;
}


