:root {
    --bg: #fdfdfd;
    --text: #1a1a1a;
    --primary: #121826; /* Deep Slate */
    --accent: #7c3aed;  /* Palladian Purple (Vivid & Professional) */
    --accent-light: #f5f3ff; /* Very pale purple for subtle backgrounds */
    --border: #e2e8f0;
    --card-bg: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
nav { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; letter-spacing: -1px; font-size: 1.2rem; }
.logo span { color: var(--accent); font-weight: 400; }

/* Hero */
.hero { padding: 8rem 0 5rem; text-align: center; }
h1 { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.accent { color: var(--accent); }
.subtitle { font-size: 1.25rem; color: #666; max-width: 700px; margin: 0 auto 2.5rem; }

/* Cards & Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.card { 
    background: var(--card-bg); 
    padding: 2.5rem; 
    border: 1px solid var(--border); 
    border-radius: 8px; 
    transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); }
.card.highlight { border: 2px solid var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.icon { color: var(--accent); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.price { font-size: 2.5rem; font-weight: 800; margin: 1.5rem 0; color: var(--primary); }

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 0.8rem 1.8rem; 
    border-radius: 4px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: 0.2s;
}
.primary { background: var(--primary); color: white; }
.secondary { border: 1px solid var(--primary); color: var(--primary); margin-left: 1rem; }
.card-btn { width: 100%; text-align: center; border: 1px solid var(--primary); color: var(--primary); }
.card-btn:hover { background: var(--primary); color: white; }

/* Bundle Banner */
.bundle-banner { 
    margin-top: 4rem; 
    background: var(--primary); 
    color: white; 
    padding: 3rem; 
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.old-price { text-decoration: line-through; opacity: 0.6; font-size: 1.5rem; margin-right: 1rem; }
.new-price { font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-right: 2rem; }
.bundle-btn { background: var(--accent); color: white; font-size: 1.1rem; padding: 1rem 2rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .bundle-banner { text-align: center; justify-content: center; }
}




/* Authority Section */
.authority-section { padding: 8rem 0; background: #ffffff; }
.authority-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }

.eyebrow { 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    color: var(--accent); 
    font-weight: 700; 
    display: block; 
    margin-bottom: 1rem; 
}

.auth-text h2 { font-family: 'Playfair Display', serif; font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem; }
.auth-text p { font-size: 1.1rem; color: #444; margin-bottom: 1.5rem; }

.stats { display: flex; gap: 3rem; margin-top: 2rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.stat-item strong { display: block; font-size: 2rem; color: var(--primary); font-family: 'Playfair Display', serif; }
.stat-item span { font-size: 0.8rem; text-transform: uppercase; color: #888; letter-spacing: 1px; }

/* --- UPDATED AUTH IMAGE CSS --- */

.auth-image { 
    display: flex; 
    justify-content: center; /* Center the constrained image horizontally */
    align-items: center; 
}

.auth-image img { 
    width: 100%;             /* Allow image to scale down if container shrinks */
    height: auto;           /* Maintain aspect ratio */
    
    /* THE CONSTRAINTS */
    max-width: 320px;       /* *** ADJUST THIS to change overall photo size *** */
    max-height: 400px;      /* Ensure it doesn't get too tall on large screens */
    
    /* PALLADIO STYLING */
    object-fit: cover;      /* Crops nicely if image ratios are odd */
    border-radius: 12px;     /* Match standard rounding */
    border: 4px solid var(--border); /* A substantial professional frame */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft, premium shadow */
    transition: 0.3s;       /* Smooth effect if we add hover */
}

/* Optional hover effect for a interactive 'handshake' feel */
.auth-image img:hover {
    border-color: var(--accent); /* Turn gold on hover */
    transform: scale(1.02);      /* Tiny zoom */
}

/* Logo Bar */
.logo-bar { margin-top: 5rem; text-align: center; border-top: 1px solid var(--border); padding-top: 3rem; }
.logo-bar p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #aaa; margin-bottom: 2rem; }
.logo-grid { 
    display: flex; 
    justify-content: center; 
    gap: 3rem; 
    flex-wrap: wrap; 
    filter: grayscale(100%); 
    opacity: 0.6; 
    font-weight: 800; 
    font-size: 1.2rem;
    color: #444;
}

@media (max-width: 768px) {
    .authority-grid { grid-template-columns: 1fr; text-align: center; }
    .stats { justify-content: center; }
}





/* Success Page Specifics */
.success-page .hero-mini {
    padding: 6rem 0 3rem;
    text-align: center;
    background-image: 
        linear-gradient(to right, #e2e8f0 1px, transparent 1px),
        linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ecfdf5;
    color: #065f46;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid #a7f3d0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.step-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    opacity: 0.7;
}

.step-card.active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-card.active::before {
    content: "Current Phase";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.support-box {
    text-align: center;
    padding: 2rem;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.support-box a { color: var(--accent); text-decoration: none; font-weight: 600; }

.back-home {
    display: block;
    text-align: center;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-home:hover { color: var(--primary); }