/* CSS Variables */
:root {
    --primary-color: #0f172a;    
    --accent-color: #2563eb;     
    --accent-glow: rgba(37, 99, 235, 0.3);
    --background-color: #f8fafc; 
    --surface-color: #ffffff;    
    --text-main: #334155;        
    --text-light: #64748b;       
    --border-radius: 12px;       
    --section-padding: 80px 20px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-color);
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8; 
}

/* Typography */
h1, h2, h3 {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

section {
    padding: var(--section-padding);
}

/* Elevated Surface Cards */
.surface-box {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.surface-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Navigation */
nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
}


/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 var(--accent-glow);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Split Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Grid Layouts for Content */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

/* Scrolling Reviews (Marquee) */
.marquee-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 2rem;
    animation: scroll 45s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 2rem)); }
}

.testimonial-card {
    width: 400px;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
}

.quote-icon {
    color: var(--accent-color);
    font-size: 3rem;
    line-height: 0.5;
    opacity: 0.2;
    margin-bottom: 1rem;
}

/* Calendar Section Split Layout */
.calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.calendar-info {
    padding: 3rem;
    background: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-info h3 {
    color: white;
    font-size: 2rem;
}

.calendar-info p {
    color: #94a3b8;
}

.calendar-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Embed Containers */
.embed-container {
    width: 100%;
    overflow: hidden;
}

/* Force LinkedIn iframes to be responsive */
.embed-container iframe {
    display: block;
    width: 100% !important;
    max-width: 504px;
    border: none;
    border-radius: var(--border-radius);
}

/* Quiz Buttons */
.quiz-btn {
    background-color: var(--background-color);
    border: 2px solid #e2e8f0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.quiz-btn:hover {
    border-color: var(--accent-color);
    background-color: #eff6ff;
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 4rem 20px;
    margin-top: 4rem;
}

footer h2 {
    color: white;
    margin-bottom: 1rem;
}

/* Responsive */
/* Responsive Overrides */
@media (max-width: 900px) {
    /* Show the hamburger button */
    .mobile-menu-toggle {
        display: block; 
    }
    
    /* Hide normal layout, setup dropdown layout */
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%; /* Drops down exactly below the header */
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98); /* Solid background so it's readable */
        padding: 1.5rem 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e2e8f0;
    }

    /* The class JavaScript will add when clicked */
    .nav-links.active {
        display: flex; 
    }

    /* Space out the links for "fat fingers" on mobile */
    .nav-links a {
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .nav-links .btn {
        text-align: center;
        margin-top: 1rem;
    }

    /* Existing overrides */
    .hero-grid, .calendar-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr; 
    }
    .pricing-card.tier-2 {
        transform: none; 
    }
    .pricing-card.tier-2:hover {
        transform: translateY(-5px);
    }
    .hero h1 {
        font-size: 2.75rem;
    }
    .hero-image {
        height: 350px;
    }
    .testimonial-card {
        width: 300px;
    }
}

/* --- Joke Chatbot Styles --- */
#chatbot-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 var(--accent-glow);
    z-index: 1000;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chatbot-toggle:hover {
    transform: scale(1.05);
    background-color: #1d4ed8;
}

#chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 340px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

#chatbot-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    opacity: 0.8;
}

#chatbot-close:hover {
    opacity: 1;
}

#chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
}

.bot-msg, .user-msg {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-msg {
    background: white;
    align-self: flex-start;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
}

.user-msg {
    background: var(--accent-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bot-msg a {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: underline;
}

#chatbot-form {
    display: flex;
    border-top: 1px solid #e2e8f0;
    background: white;
}

#chatbot-input {
    flex-grow: 1;
    border: none;
    padding: 15px;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-main);
}

#chatbot-form button {
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

#chatbot-form button:hover {
    color: #1d4ed8;
}

/* --- Pricing Section Styles --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center; /* This allows the middle card to be taller */
}

.pricing-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    gap: 0.75rem;
}

.pricing-features li span {
    color: var(--accent-color);
    font-weight: bold;
}

/* Highlighted Center Card */
.pricing-card.highlighted {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.3);
    position: relative;
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card.highlighted .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.highlighted .pricing-features li {
    color: #f8fafc;
}

.pricing-card.highlighted .pricing-features li span {
    color: #60a5fa; /* Lighter blue for dark background */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: none;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

.pricing-card .btn {
    text-align: center;
    width: 100%;
}

/* --- FAQ Section Styles --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
}

.faq-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .pricing-card.highlighted {
        transform: none; /* Disables the visual "pop out" on mobile so it stacks neatly */
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

/* Text */
.text-center { text-align: center; }
.text-muted { color: #94a3b8; }

/* Container Width Variants */
.container-sm { max-width: 600px; margin: 0 auto; }
.container-md { max-width: 700px; margin: 0 auto; }
.container-lg { max-width: 800px; margin: 0 auto; }

/* Button Size Variant */
.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

/* ===========================================
   SECTION VARIANTS
   =========================================== */

/* White/card background sections */
.section-surface {
    background-color: var(--surface-color);
}

/* Dark/primary background sections (calculator, etc.) */
.section-dark {
    background: var(--primary-color);
    color: white;
}

/* Reviews marquee section has tighter custom padding */
.section-reviews {
    overflow: hidden;
    padding: 60px 0;
}

/* ===========================================
   ABOUT SECTION (Services page)
   =========================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===========================================
   ROI CALCULATOR (index.html)
   =========================================== */

.calculator-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    color: var(--primary-color);
    text-align: left;
}

.calculator-label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.calculator-label-value {
    color: var(--accent-color);
}

.calculator-slider {
    width: 100%;
    margin-bottom: 2rem;
}

.calculator-result {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    text-align: center;
}

.calculator-result p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.calculator-result h3 {
    font-size: 2.5rem;
    color: #10b981;
    margin: 0;
}

/* ===========================================
   SUBSTACK ARTICLE CARDS (index.html)
   =========================================== */

.article-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.article-title {
    margin-top: 0.75rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.article-title a {
    color: var(--primary-color);
}

.article-snippet {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.article-link {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===========================================
   INQUIRY FORM (index.html)
   =========================================== */

.inquiry-embed {
    padding: 0;
}

/* --- First-Time Visitor Popup Styles --- */
/* --- Modern Shadcn/Tailwind Dialogue Styles --- */
.dialogue-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    /* Exactly matches Tailwind's bg-black/80 */
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.dialogue-overlay.show {
    opacity: 1;
    visibility: visible;
}

.dialogue-content {
    background-color: var(--surface-color, #ffffff);
    /* Tailwind border & border-radius */
    border: 1px solid #e2e8f0; 
    border-radius: 0.5rem; 
    /* Tailwind shadow-lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); 
    width: 100%;
    /* Tailwind max-w-lg (512px) */
    max-width: 32rem; 
    /* Tailwind p-6 (24px) */
    padding: 1.5rem; 
    position: relative;
    display: grid;
    /* Tailwind gap-4 */
    gap: 1rem; 
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dialogue-overlay.show .dialogue-content {
    transform: scale(1);
}

.dialogue-header {
    display: flex;
    flex-direction: column;
    /* Tailwind space-y-1.5 */
    gap: 0.375rem; 
    text-align: center;
}

@media (min-width: 640px) {
    .dialogue-header {
        text-align: left;
    }
}

.dialogue-title {
    /* Tailwind text-lg font-semibold leading-none tracking-tight */
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--primary-color, #0f172a);
}

.dialogue-description {
    /* Tailwind text-sm text-muted-foreground */
    font-size: 0.875rem;
    color: var(--text-light, #64748b);
    margin: 0;
    line-height: 1.5;
}

.dialogue-close-x {
    /* Tailwind absolute right-4 top-4 */
    position: absolute;
    right: 1rem; 
    top: 1rem; 
    border-radius: 0.125rem;
    opacity: 0.7;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.dialogue-close-x:hover {
    opacity: 1;
}

.dialogue-close-x svg {
    /* Tailwind size-4 */
    width: 1rem;
    height: 1rem;
}

/* --- Dialogue Footer & Buttons --- */
/* --- Modern Shadcn/Tailwind Dialogue Styles --- */
.dialogue-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.dialogue-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* UPDATED: Removed padding and added overflow hidden for the split layout */
.dialogue-content.split-layout {
    background-color: transparent;
    border: none; 
    border-radius: 0.75rem; /* Slightly softer corners for a large card */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1); 
    width: 95%;
    max-width: 480px; 
    padding: 0; /* Important: Padding moved to the inner divs */
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensures the top color respects the rounded corners */
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dialogue-overlay.show .dialogue-content {
    transform: scale(1);
}

/* NEW: Top Colored Section */
.dialogue-top {
    background-color: var(--primary-color);
    padding: 2.5rem 2rem 2rem 2rem;
}

/* NEW: Bottom White Section */
.dialogue-bottom {
    background-color: var(--surface-color);
    padding: 2rem;
    border-top: 1px solid rgba(0,0,0,0.5);
}

.dialogue-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; 
    text-align: center;
}

.dialogue-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
}

.dialogue-description {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* NEW: Checklist Styles */
.dialogue-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dialogue-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.4;
}

.check-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: #10b981; /* Emerald green checkmarks */
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.dialogue-close-x {
    position: absolute;
    right: 1.25rem; 
    top: 1.25rem; 
    border-radius: 0.125rem;
    opacity: 0.6;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dialogue-close-x:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Primary Button Updates for Colored Background */
#dialogue-cta.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem; 
    font-size: 0.95rem; 
    font-weight: 600; 
    height: 2.75rem; 
    padding: 0 1rem; 
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

#dialogue-cta.btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

#dialogue-dismiss.btn-ghost {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#dialogue-dismiss.btn-ghost:hover {
    color: var(--primary-color) !important;
}