:root {
    --bg-color: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --primary-color: #3b82f6;
    /* Blue for Mary */
    --accent-color: #fbbf24;
    /* Gold */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-speed: 0.6s;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.price {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1e3a8a 0%, transparent 40%),
        radial-gradient(circle at bottom left, #1e40af 0%, transparent 40%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Images */
.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    max-width: 100%;
    max-height: 600px;
    /* Limit height for vertical tablet */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.secondary-image {
    max-width: 100%;
    /* max-height removed to allow full width landscape */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.secondary-image:hover {
    transform: scale(1.02);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Main CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-dark {
    background-color: #0b1120;
}

.section-gradient {
    background: linear-gradient(to bottom, #0f172a, #172554, #0f172a);
}

/* Identification Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card i {
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.2rem;
    font-weight: 500;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.bible-quote {
    margin-top: 3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    display: inline-block;
}

/* Timeline/Journey */
.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item .day-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    font-size: 1.5rem;
}

.objective-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 0;
    color: #bfdbfe;
}

/* Visual Break */
.visual-break {
    padding: 40px 0;
}

/* Expectations Grid */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
}

.feature i {
    color: var(--primary-color);
}

/* Audience Comparison */
.comparison {
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-col {
    padding: 3rem;
}

.positive {
    background: rgba(16, 185, 129, 0.05);
}

.negative {
    background: rgba(239, 68, 68, 0.05);
}

.audience-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.audience-col ul {
    list-style: none;
}

.audience-col li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.positive i {
    color: #34d399;
}

.negative i {
    color: #f87171;
}

/* Offer Section */
.section-offer {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1e3a8a 0%, #0f172a 70%);
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.15);
}

.offer-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.offer-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-block {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}

.product-name {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.delivery {
    color: #4ade80;
    font-weight: 600;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.secure-badge {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations Classes */
.fade-in,
.fade-up,
.fade-left,
.fade-right,
.fade-zoom {
    opacity: 0;
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in {
    opacity: 0;
}

.fade-in.visible {
    opacity: 1;
}

.fade-up {
    transform: translateY(30px);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    transform: translateX(30px);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-zoom {
    transform: scale(0.9);
}

.fade-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .main-image {
        transform: none;
        height: 300px;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 2rem;
        padding-right: 0;
        text-align: left !important;
        /* Force left alignment */
        margin-left: 1rem;
        left: 0 !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

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

    .price {
        font-size: 3rem;
    }
}