/* --- Root Variables & Fonts --- */
:root {
    --scout-purple: #590083;
    --heritage-purple: #9A00D6;
    --clother: "clother", sans-serif;
    --bg-grey: #f8f9fa;
    --transition: all 0.3s ease;
}

/* --- Base Styles --- */
body { 
    font-family: var(--clother); 
    font-weight: 300; /* Clother Light as default */
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography Hierarchy --- */
h1, h2, h3, h4, .fw-bold { 
    font-weight: 700 !important; /* Clother Bold */
}

h1, .display-3 { 
    font-weight: 900 !important; /* Clother Black for Hero */
    font-size: clamp(2.2rem, 8vw, 4rem);
    letter-spacing: -1px;
}

h2, .display-5 { 
    font-size: clamp(1.8rem, 5vw, 2.8rem); 
}

.text-purple { color: var(--heritage-purple) !important; }
.bg-scout { background-color: var(--scout-purple) !important; }

/* --- Navigation --- */
.navbar-brand {
    font-weight: 900;
    letter-spacing: -1px;
}

/* --- Buttons --- */
.btn-scout { 
    background-color: var(--scout-purple); 
    color: white; 
    font-weight: 700; 
    padding: 12px 30px;
    border-radius: 800px;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-scout-light {
    border: 1px solid var(--scout-purple) !important;
    color: var(--scout-purple);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 800px;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-white {
    background-color: white;
    color: #590083;
    border: none;
    transition: transform 0.2s;
}
.btn-white:hover {
    background-color: #f8f9fa;
    color: #40005e;
    transform: translateY(-2px);
}

.btn-scout:hover { 
    background-color: var(--heritage-purple); 
    color: white; 
}

.btn-scout-light:hover {
    border: 1px solid var(--scout-purple) !important;
    background-color: var(--scout-purple); 
    color: white; 
}

.btn-light:hover, .btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Ensure buttons are easy to press on mobile */
@media (max-width: 576px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 14px 20px;
    }
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(89, 0, 131, 0.7), rgba(89, 0, 131, 0.7)), 
                url('/assets/img/bg.png') center center / cover no-repeat;
    border-radius: 20px;
    padding: 60px 20px;
    position: relative;
    border: none;
}

@media (min-width: 992px) {
    .hero-section {
        border-radius: 40px;
        padding: 120px 40px;
    }
}

.hero-section-home {
    background: linear-gradient(rgba(89, 0, 131, 0.7), rgba(89, 0, 131, 0.7)), 
                url('/assets/img/bg.png') center center / cover no-repeat;
    border-radius: 20px;
    padding: 60px 20px;
    position: relative;
    border: none;
}

@media (min-width: 992px) {
    .hero-section-home {
        border-radius: 40px;
        padding: 110px 40px;
    }
}

/* Typing Effect */
.cursor {
    font-weight: 300;
    margin-left: 4px;
    display: inline-block;
    animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
    from, to { color: transparent; }
    50% { color: white; }
}

/* --- Features & Content --- */
.feature-card {
    border: 1px solid #eee;
    transition: var(--transition);
    border-radius: 12px;
}

.feature-card:hover { 
    border-color: var(--heritage-purple);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-subtitle {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 50px;
    color: #666;
}

/* --- Roadmap & AI Section --- */
.roadmap-container {
    background-color: var(--scout-purple);
    color: #fff;
    border-radius: 24px;
    padding: 40px 25px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .roadmap-container {
        border-radius: 40px;
        padding: 80px 60px;
    }
}

.coming-soon-badge {
    background-color: var(--heritage-purple) !important;
    font-weight: 700;
    font-style: italic; 
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Skeleton & AI UI Mockups */
.skeleton-ui {
    background: rgba(255,255,255,0.1);
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 12px;
    margin: 0 auto;
}

.line { 
    height: 10px; 
    background: rgba(255,255,255,0.2); 
    margin-bottom: 10px; 
    border-radius: 5px; 
}

.line.short { width: 60%; }

.grid-skeleton { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 10px; 
    margin-top: 20px; 
}

.grid-skeleton div { 
    height: 40px; 
    background: rgba(255,255,255,0.2); 
    border-radius: 5px; 
}

/* --- Templates Grid --- */
.templates { padding: clamp(40px, 8vw, 80px) 0; background: #fff; }

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.template-thumb {
    height: 180px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #eee;
    transition: var(--transition);
}

.template-thumb:hover {
    transform: scale(1.02);
}

/* --- Pricing Cards --- */
.pricing-card {
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--transition);
    background: white;
}

.pricing-card.featured {
    border: 2px solid var(--scout-purple);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

/* --- Utils --- */
.max-width-700 { max-width: 700px; margin: 0 auto; }
.shadow-hover:hover { box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important; }
.transition { transition: var(--transition); }

/* Styling for the top-bar hover state */
.hover-purple:hover {
    color: var(--scout-purple) !important;
}

/* Ensure the navbar collapse looks like a clean menu on mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* Prevents the logo from getting squashed on tiny screens */
.navbar-brand img {
    min-width: 110px;
}

/* Custom class to be added via JavaScript */
.nav-scrolled {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; /* Bootstrap's shadow-sm */
}

/* Smooth transition for the shadow and padding */
.transition-all {
    transition: all 0.3s ease-in-out;
}

.error-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900 !important;
    color: var(--scout-purple);
    line-height: 1;
    margin-bottom: 0;
    opacity: 0.2;
    position: absolute;
    z-index: -1;
}
.error-content {
    z-index: 1;
}
.compass-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.bg-success-subtle {
    background-color: #d1e7dd; /* Bootstrap success light */
    transition: transform 0.2s ease;
}
.bg-success-subtle:hover {
    transform: scale(1.05);
    background-color: #c1dcd0;
}
/* Subtle pulse on the icon */
.bi-patch-check-fill {
    animation: status-pulse 2s infinite;
}
@keyframes status-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.site-notif {
    /* Vital: High Z-index to beat Bootstrap modals/cards */
    z-index: 999999 !important; 
    position: fixed;
    top: 20px; /* Distance from top */
    left: 50%;
    transform: translateX(-50%); /* Only center horizontally */
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    pointer-events: none; /* Container doesn't block clicks, but children do */
}

.site-notif div {
    pointer-events: auto;
    display: flex;
    align-items: center; /* Vertically centers all children */
    justify-content: flex-start; /* Keeps content to the left */
    margin-bottom: 10px;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px; /* Added padding to ensure the icon isn't touching the edge */
}

.site-notif .icon {
    margin-right: 12px;
    font-size: 2rem;
    line-height: 1; /* Prevents the icon's box from being taller than the icon itself */
    display: flex; 
    align-items: center; 
    justify-content: center;
}
/* Re-applying your solid branding */
.site-notif .success { background-color: rgba(0, 149, 112, 0.849) !important; }
.site-notif .warning { background-color: #f79743c2 !important; }
.site-notif .danger  { background-color: #f74343c9 !important; }
.site-notif .info    { background-color: #437ff7ce !important; }


.site-notif .close {
    margin-left: auto;
    cursor: pointer !important;
    font-size: 1.6rem;
    line-height: 1;
    opacity: 0.7;
    transition: 0.2s;
}

.site-notif .close:hover {
    opacity: 1;
}

#wrapper {
    overflow-x: hidden;
    min-height: calc(100 vh - 70px); /* Height minus navbar */
    transition: all 0.3s ease;
}

#sidebar-wrapper {
    min-width: 250px;
    max-width: 250px;
    /* Changed: Use sticky and 100vh to allow internal scrolling */
    height: 100vh;
    position: sticky;
    top: 0;
    overflow-y: auto;
    background-color: #fff;
    transition: margin .25s ease-out;
    /* Optional: Hide horizontal overflow just in case */
    overflow-x: hidden;
}

/* Custom Scrollbar for the Sidebar */
#sidebar-wrapper::-webkit-scrollbar {
    width: 5px;
}
#sidebar-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}
#sidebar-wrapper::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 10px;
}
#sidebar-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--scout-purple);
}

#sidebar-wrapper .list-group-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    color: #495057;
}

#sidebar-wrapper .list-group-item:hover {
    background-color: #f8f9fa;
    color: var(--scout-purple);
}

#sidebar-wrapper .active-scout {
    background-color: rgba(89, 0, 131, 0.1) !important;
    color: #590083 !important;
    border-left: 4px solid #590083 !important;
    font-weight: 600;
}

.sidebar-heading {
    letter-spacing: 1px;
}

/* DEFAULT STATE FOR MOBILE (Hidden) */
@media (max-width: 991.98px) {
    #sidebar-wrapper {
        margin-left: -250px;
        position: fixed;
        z-index: 1050;
        height: 100vh; /* Ensure it covers full screen on mobile */
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: 0;
    }
}

/* DESKTOP BEHAVIOR */
@media (min-width: 992px) {
    #wrapper.toggled #sidebar-wrapper {
        margin-left: -250px;
    }
}

#logout-progress {
    width: 0%; 
    background-color: #9A00D6; 
    /* Increased reliability with a direct transition property */
    transition: width 3.0s linear !important; 
}

.grayscale-icons .integration-icon {
        cursor: pointer;
        filter: grayscale(100%);
        transition: all 0.3s ease;
        padding: 5px;
    }

    .grayscale-icons .integration-icon:hover {
        filter: grayscale(0%);
        transform: translateY(-3px);
    }

    /* Customizing the Tooltip Appearance */
    .tooltip-inner {
        background-color: #590083 !important; /* Your Scout Purple */
        padding: 10px 15px;
        border-radius: 12px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .bs-tooltip-top .tooltip-arrow::before {
        border-top-color: #590083 !important;
    }

.premium-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(89, 0, 131, 0.85); /* Scout Purple with transparency */
    z-index: 10;
    backdrop-filter: blur(4px);
    border-radius: inherit;
}

.content-blur {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.border-dashed {
    border: 2px dashed #dee2e6 !important;
    background: transparent;
}

/* --- Public (logged-out) chrome --- */
.public-topbar {
    background: linear-gradient(90deg, #4a006e 0%, var(--scout-purple) 50%, #6b00a0 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0;
}
.public-topbar a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.public-topbar a:hover {
    color: #fff;
}
.public-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.22rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.public-status .status-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.28);
    flex-shrink: 0;
    animation: status-dot-pulse 2s ease-in-out infinite;
}
@keyframes status-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.28); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.12); }
}

.public-navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(89, 0, 131, 0.06);
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
}
.public-navbar.nav-scrolled {
    box-shadow: 0 10px 32px rgba(89, 0, 131, 0.08) !important;
    border-bottom-color: rgba(89, 0, 131, 0.1);
}
.public-navbar .nav-link {
    color: #2d1b3d !important;
    font-weight: 600 !important;
    font-size: 0.93rem;
    padding: 0.45rem 0.85rem !important;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}
.public-navbar .nav-link:hover,
.public-navbar .nav-link:focus {
    color: var(--scout-purple) !important;
    background: rgba(89, 0, 131, 0.06);
}
.public-navbar .navbar-brand img {
    transition: transform 0.2s ease;
}
.public-navbar .navbar-brand:hover img {
    transform: translateY(-1px);
}
.public-navbar .btn-scout,
.public-navbar .btn-scout-light {
    padding: 10px 22px;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .public-navbar .navbar-collapse {
        background: #fff;
        padding: 1.25rem;
        border-radius: 18px;
        margin-top: 12px;
        box-shadow: 0 18px 40px rgba(89, 0, 131, 0.12);
        border: 1px solid rgba(89, 0, 131, 0.06);
    }
    .public-navbar .navbar-nav .nav-link {
        padding: 12px 8px !important;
        border-radius: 10px;
        border-bottom: none;
    }
}

.public-footer {
    margin-top: 0;
    background: #160022;
    color: #fff;
}
.public-footer-cta {
    background: linear-gradient(135deg, var(--scout-purple) 0%, #7a00b5 55%, var(--heritage-purple) 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.public-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 20%, rgba(255,255,255,0.16), transparent 45%);
    pointer-events: none;
}
.public-footer-cta h2 {
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}
.public-footer-cta p {
    margin: 0;
    opacity: 0.85;
    font-weight: 300;
    max-width: 540px;
}
.public-footer-main {
    padding: 4.5rem 0 3rem;
}
.public-footer-main h6 {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
}
.public-footer-main a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.public-footer-main a:hover {
    color: #fff;
    padding-left: 3px;
}
.public-footer-brand p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}
.public-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0 1.75rem;
    background: #100018;
}
.public-footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    line-height: 1.55;
}
.public-footer #randomize-msg {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.2s ease, transform 0.2s ease;
}
.public-footer #randomize-msg:hover {
    color: #fff !important;
}
.public-footer-cta .btn {
    margin-bottom: 0;
}
.public-footer-cta .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .public-navbar .btn {
        width: 100%;
        margin-bottom: 0;
    }
}

/* --- Public marketing pages --- */
.public-page { color: #1a0f24; }
.public-hero-wrap { padding: 1.5rem 0 0; }
.public-hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(154, 0, 214, 0.35), transparent 42%),
        linear-gradient(135deg, rgba(42, 0, 70, 0.78) 0%, rgba(89, 0, 131, 0.72) 55%, rgba(154, 0, 214, 0.55) 100%),
        url('/assets/img/bg.png') center center / cover no-repeat;
    border-radius: 2rem;
    padding: 4rem 1.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px -30px rgba(89, 0, 131, 0.55);
    color: #fff;
    text-align: center;
}
@media (min-width: 992px) {
    .public-hero { padding: 5rem 4rem; border-radius: 2.5rem; }
}
.public-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.35rem;
}
.public-hero h1 {
    color: #fff;
    font-weight: 900 !important;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 1.1rem;
}
.public-hero .lead {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}
.public-hero-actions { justify-content: center; }
.public-hero-actions .btn { min-width: 160px; }
.public-hero-actions .btn-outline-light:hover,
.public-hero-actions .btn-outline-light:focus,
.public-hero-actions .btn-outline-light:active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: #fff;
}
.public-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.25rem;
    margin-top: 1.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
}
.public-trust-row i { color: #d9b6ff; }

.public-section { padding: 5.5rem 0; }
.public-muted { background: #fbf7ff; }
.public-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--scout-purple);
}
.fw-black { font-weight: 900; }

.public-feature {
    background: #fff;
    border: 1px solid #efe7f5;
    border-radius: 1.4rem;
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.public-feature:hover {
    transform: translateY(-6px);
    border-color: #d9b6ff;
    box-shadow: 0 18px 40px rgba(89, 0, 131, 0.08);
}
.public-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f6effb;
    color: var(--scout-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
}

.public-panel {
    background: #fff;
    border: 1px solid #efe7f5;
    border-radius: 1.75rem;
    padding: 2rem;
    height: 100%;
}
.public-panel-dark {
    background: linear-gradient(160deg, var(--scout-purple) 0%, #7a00b5 100%);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

.home-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f6effb;
    color: var(--scout-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-card-inline {
    border: 1px solid #efe7f5;
    border-radius: 1.75rem;
    background: white;
    transition: 0.3s cubic-bezier(.25,.8,.25,1);
    padding: 2.5rem !important;
    height: 100%;
}
.pricing-card-inline:hover {
    border-color: var(--scout-purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(89, 0, 131, 0.08);
}
.pricing-card-inline.featured {
    border: 2px solid var(--scout-purple);
    box-shadow: 0 18px 40px rgba(89, 0, 131, 0.1);
}

.price-toggle-container {
    display: inline-flex;
    background: #efe7f5;
    padding: 4px;
    border-radius: 50px;
    margin-bottom: 2rem;
}
.price-toggle-container .btn {
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.2s;
    width: auto;
    margin-bottom: 0;
}
.price-toggle-container .btn.active {
    background: white;
    color: var(--scout-purple);
    box-shadow: 0 2px 8px rgba(89, 0, 131, 0.1);
}

.public-domain-card {
    background: linear-gradient(135deg, var(--scout-purple) 0%, #7a00b5 100%);
    color: #fff;
    border-radius: 1.75rem;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}

.public-tabs .nav-link {
    color: #444;
    border: 1px solid #efe7f5;
    background: #fff;
    transition: 0.25s;
    margin-bottom: 8px;
}
.public-tabs .nav-link:hover { background: #f6effb; color: var(--scout-purple); }
.public-tabs .nav-link.active {
    background: #fff !important;
    color: var(--scout-purple) !important;
    border-color: var(--scout-purple) !important;
    box-shadow: 0 10px 20px rgba(89,0,131,0.1);
}

@media (max-width: 576px) {
    .public-hero-actions .btn { width: 100%; }
}