/* Landing Page Alternative Styles */

/* Base Variables */
:root {
    --primary-alt: #3b82f6;
    --primary-dark-alt: #2563eb;
    --primary-light-alt: #60a5fa;
    --secondary-alt: #10b981;
    --accent-alt: #6366f1;
    --dark-alt: #1f2937;
    --light-alt: #f8fafc;
    --text-alt: #111827;
    --text-light-alt: #ffffff;
    --text-muted-alt: #6b7280;
    --gradient-alt: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-soft: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm-alt: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md-alt: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg-alt: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius-alt: 1rem;
    --transition-alt: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section Styles */
.hero-section-alt {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light-alt);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.hero-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: 2;
}

.hero-text-alt {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #f1f5f9;
}

/* Button Improvements */
.btn-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    color: var(--primary-alt);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    color: var(--primary-dark-alt);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.shine-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.shine-btn:hover::before {
    left: 100%;
}

.hero-tagline {
    position: relative;
    display: inline-block;
}

.hero-tagline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.shine-btn {
    position: relative;
    overflow: hidden;
}

.shine-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 80%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.6;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Trusted Section */
.trusted-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Features Section */
.features-section-alt {
    padding: 5rem 0;
}

.feature-card-alt {
    background-color: #fff;
    border-radius: var(--border-radius-alt);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm-alt);
    transition: var(--transition-alt);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works-section-alt {
    position: relative;
    padding: 5rem 0;
    background-color: #fff;
}

.step-container {
    position: relative;
    padding-left: 40px;
}

.step-timeline {
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background-color: var(--primary-light-alt);
    border-radius: 2px;
}

.step-item-alt {
    position: relative;
    padding-bottom: 2rem;
}

.step-item-alt:last-child {
    padding-bottom: 0;
}

.step-number-alt {
    position: absolute;
    left: -40px;
    width: 40px;
    height: 40px;
    background: var(--primary-alt);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.step-content-alt {
    background-color: #fff;
    border-radius: var(--border-radius-alt);
    padding: 1.5rem;
    margin-left: 1rem;
    box-shadow: var(--shadow-sm-alt);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Testimonials Section */
.testimonials-section-alt {
    padding: 5rem 0;
    background-color: var(--light-alt);
}

.testimonial-card-alt {
    background-color: #fff;
    border-radius: var(--border-radius-alt);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm-alt);
    transition: var(--transition-alt);
    position: relative;
    overflow: hidden;
}

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

.testimonial-quote {
    color: var(--primary-light-alt);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-content-alt {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-alt);
}

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

.author-image {
    margin-right: 1rem;
}

.author-image img {
    border: 3px solid var(--primary-light-alt);
}

/* Pricing Section */
.pricing-section-alt {
    padding: 5rem 0;
}

.pricing-card-alt {
    background-color: #fff;
    border-radius: var(--border-radius-alt);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm-alt);
    transition: var(--transition-alt);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md-alt);
}

.pricing-popular-alt {
    border: 2px solid var(--primary-alt);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-popular-alt:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge-alt {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--primary-alt);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    border-radius: 0 0 0.5rem 0.5rem;
    z-index: 2;
}

.pricing-header-alt {
    padding: 2rem;
    text-align: center;
}

.pricing-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 0 2rem;
}

.pricing-price-alt {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-alt);
    line-height: 1;
    margin: 1rem 0;
}

.pricing-price-alt .currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: normal;
    margin-right: 0.25rem;
}

.pricing-price-alt .period {
    font-size: 1rem;
    color: var(--text-muted-alt);
    font-weight: normal;
}

.pricing-features-alt {
    padding: 2rem;
}

.pricing-features-alt ul li {
    margin-bottom: 0.75rem;
}

.pricing-footer-alt {
    padding: 2rem;
    text-align: center;
}

/* CTA Section */
.cta-section-alt {
    background: var(--gradient-alt);
    color: white;
    padding: 5rem 0;
}

.cta-card-alt {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-alt);
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Newsletter Section */
.newsletter-section-alt {
    padding: 5rem 0;
    background-color: #fff;
}

.newsletter-form-alt {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section-alt {
        padding-top: 8rem;
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .pricing-popular-alt {
        transform: scale(1);
    }
    
    .pricing-popular-alt:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 767.98px) {
    .feature-card-alt,
    .testimonial-card-alt,
    .pricing-card-alt {
        margin-bottom: 1.5rem;
    }
    
    .step-container {
        margin-bottom: 2rem;
    }
    
    .cta-card-alt {
        padding: 2rem 1rem;
    }
}

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

.animated-alt {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-alt.animate-on-scroll {
    transform: translateY(30px) scale(0.95);
}

.feature-card-alt.animated-alt {
    transform: translateY(0) scale(1);
}

.testimonial-card-alt.animate-on-scroll {
    transform: translateY(30px) rotate(-1deg);
}

.testimonial-card-alt.animated-alt {
    transform: translateY(0) rotate(0);
}

.pricing-card-alt.animate-on-scroll {
    transform: translateY(30px);
}

.pricing-card-alt.animated-alt {
    transform: translateY(0);
}

.pricing-popular-alt.animate-on-scroll {
    transform: translateY(30px) scale(1.05);
}

.pricing-popular-alt.animated-alt {
    transform: translateY(0) scale(1.05);
}

/* Footer Styles */
.footer-alt {
    background-color: #f9fafb;
    color: var(--text-alt);
}

.footer-links a {
    color: var(--text-muted-alt);
    text-decoration: none;
    transition: var(--transition-alt);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-alt);
    transform: translateX(3px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-alt);
    transition: var(--transition-alt);
}

.social-icon:hover {
    background-color: var(--primary-alt);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Navbar */
.navbar-alt {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-transparent-alt {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-scrolled-alt {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-scrolled-alt .navbar-brand,
.navbar-scrolled-alt .nav-link {
    color: var(--text-alt) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Accessibility - Respect user's motion preferences for alternative design */
@media (prefers-reduced-motion: reduce) {
    :root {
        --transition-alt: none !important;
    }

    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }

    .shine-btn::after,
    .cta-btn-alt::after {
        animation: none !important;
        display: none !important;
    }

    .hero-section-alt::after {
        animation: none !important;
    }

    .feature-card-alt:hover,
    .testimonial-card-alt:hover,
    .pricing-card-alt:hover,
    .step-item-alt:hover,
    .btn-light:hover,
    .btn-outline-light:hover {
        transform: none !important;
        box-shadow: var(--shadow-sm-alt) !important;
    }
}

/* Public redesign system */
:root {
    --primary-alt: #0f766e;
    --primary-dark-alt: #115e59;
    --primary-light-alt: #5eead4;
    --secondary-alt: #f97316;
    --accent-alt: #164e63;
    --dark-alt: #0f172a;
    --light-alt: #f7f6f2;
    --surface-alt: #fffdf8;
    --surface-muted-alt: #eef6f4;
    --text-alt: #0f172a;
    --text-light-alt: #ffffff;
    --text-muted-alt: #526071;
    --gradient-alt: linear-gradient(135deg, #0f766e 0%, #155e75 55%, #0f172a 100%);
    --shadow-sm-alt: 0 18px 40px -30px rgba(15, 23, 42, 0.45);
    --shadow-md-alt: 0 30px 80px -40px rgba(15, 23, 42, 0.45);
    --shadow-lg-alt: 0 42px 120px -50px rgba(15, 23, 42, 0.52);
    --border-radius-alt: 1.5rem;
}

body.landing-page {
    background: linear-gradient(180deg, #f9faf8 0%, #f4f7f5 100%);
    color: var(--text-alt);
}

body.landing-page .container {
    width: 100%;
    max-width: none;
    padding-left: clamp(1.25rem, 4vw, 4rem);
    padding-right: clamp(1.25rem, 4vw, 4rem);
}

body.landing-page main {
    position: relative;
    z-index: 2;
}

body.landing-page .public-hero > .container {
    width: min(100%, 94rem);
    margin-inline: auto;
}

body.landing-page .public-hero--compact > .container,
body.landing-page .trusted-section > .container,
body.landing-page .public-section > .container,
body.landing-page .public-section-tight > .container,
body.landing-page .public-cta-section > .container,
body.landing-page .public-main > .container {
    width: min(100%, 86rem);
    margin-inline: auto;
}

.public-hero {
    background:
        radial-gradient(circle at top right, rgba(94, 234, 212, 0.18), transparent 28%),
        radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.16), transparent 24%),
        var(--gradient-alt);
    min-height: auto;
    padding: 8.75rem 0 6rem;
}

.public-hero--landing {
    min-height: 100vh;
}

.public-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.public-display {
    font-size: clamp(3.4rem, 8vw, 5.75rem);
    margin-bottom: 1.25rem;
}

.public-lead,
#hero-lead-text {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 2rem 0 2.2rem;
}

.public-stat-pill {
    min-width: 8.8rem;
    padding: 0.9rem 1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.public-stat-pill strong,
.public-stat-pill span {
    display: block;
}

.public-stat-pill strong {
    font-size: 1.1rem;
    color: #fff;
}

.public-stat-pill span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.public-actions .btn {
    min-width: 13rem;
    border-radius: 1rem;
    padding: 0.95rem 1.4rem;
}

.hero-visual-shell {
    position: relative;
    min-height: 34rem;
}

.hero-visual-glow {
    position: absolute;
    inset: auto 3rem 2rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.4), rgba(94, 234, 212, 0));
    filter: blur(14px);
}

.hero-app-frame {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: min(100%, 36rem);
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 18, 34, 0.62);
    box-shadow: var(--shadow-lg-alt);
    backdrop-filter: blur(24px);
}

.hero-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-app-dots {
    display: flex;
    gap: 0.4rem;
}

.hero-app-dots span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.hero-app-title,
.hero-panel-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}

.hero-app-body {
    display: grid;
    grid-template-columns: 10rem 1fr;
    min-height: 28rem;
}

.hero-app-sidebar {
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-nav-item {
    padding: 0.8rem 0.9rem;
    border-radius: 0.95rem;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 600;
    font-size: 0.93rem;
    margin-bottom: 0.55rem;
}

.hero-nav-item.active {
    background: rgba(94, 234, 212, 0.18);
    color: #fff;
}

.hero-app-main {
    padding: 1.3rem;
    display: grid;
    gap: 1rem;
}

.hero-app-toolbar {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.hero-app-toolbar h3 {
    margin: 0.35rem 0 0;
    color: #fff;
    font-size: 1.45rem;
}

.hero-mini-badge {
    align-self: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.hero-chart-card,
.public-window,
.public-surface,
.contact-form-card,
.pricing-card,
.testimonial-card,
.testimonial-card-simple,
.legal-shell {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 118, 110, 0.08);
    box-shadow: var(--shadow-md-alt);
    border-radius: 1.5rem;
}

.hero-chart-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
}

.hero-chart-bars {
    height: 11rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 0.75rem;
}

.hero-chart-bars span {
    border-radius: 999px 999px 0.85rem 0.85rem;
    background: linear-gradient(180deg, #5eead4 0%, #0f766e 100%);
}

.hero-approval-list {
    display: grid;
    gap: 0.7rem;
}

.hero-approval-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    color: #fff;
    font-size: 0.95rem;
}

.hero-approval-row strong {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-approval-row.approved { background: rgba(16, 185, 129, 0.22); }
.hero-approval-row.pending { background: rgba(249, 115, 22, 0.22); }
.hero-approval-row.draft { background: rgba(59, 130, 246, 0.22); }

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.logo-chip {
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 118, 110, 0.08);
    color: var(--text-alt);
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm-alt);
}

.public-section {
    padding: 6rem 0;
}

.public-section-tight {
    padding: 2rem 0 0;
}

.public-section-muted {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.public-main {
    padding: 5.5rem 0 6rem;
}

.public-main-light {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, rgba(255, 255, 255, 0) 18rem);
}

.public-hero--compact {
    min-height: 34rem;
    padding-bottom: 4.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-hero--compact::after {
    display: none;
}

.public-proofbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.public-proofbar span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.public-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 118, 110, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm-alt);
    height: 100%;
}

.public-kicker-dark {
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-alt);
}

.public-card-muted {
    background: linear-gradient(180deg, #fff, #f4fbf8);
}

.public-card h2,
.public-card h3,
.public-card h4,
.public-card h5,
.public-card h6 {
    color: var(--text-alt);
}

.public-card p,
.public-card li,
.public-card small,
.public-card .text-muted {
    color: var(--text-muted-alt) !important;
}

.public-card-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-alt);
}

.public-story-grid,
.public-mini-grid,
.public-stat-band {
    display: grid;
    gap: 1.25rem;
}

.public-story-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.public-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-stat-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.public-stat-band .public-card {
    text-align: center;
}

.public-stat-value {
    display: block;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 800;
    color: var(--text-alt);
    margin-bottom: 0.4rem;
}

.public-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.public-check-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.85rem;
}

.public-check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-alt);
    font-weight: 800;
}

.public-section-header {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}

.public-section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    color: var(--text-alt);
}

.public-section-copy {
    color: var(--text-muted-alt);
    font-size: 1.05rem;
    line-height: 1.75;
}

.comparison-wrap,
.faq-shell,
.pricing-plan-grid,
.public-grid-features {
    margin-inline: auto;
}

.public-page-shell {
    margin-inline: auto;
}

.feature-card-alt,
.step-content-alt,
.cta-card-alt {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 118, 110, 0.08);
    box-shadow: var(--shadow-sm-alt);
}

.feature-card-alt {
    border-radius: 1.35rem;
}

.feature-card-alt h3,
.feature-card-alt h4,
.step-content-alt h3 {
    color: var(--text-alt);
}

.feature-card-alt p,
.step-content-alt p {
    color: var(--text-muted-alt);
    line-height: 1.7;
}

.feature-icon-alt {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(22, 78, 99, 0.06));
    color: var(--primary-alt);
}

.step-timeline {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.2), rgba(249, 115, 22, 0.2));
}

.step-number-alt {
    background: linear-gradient(135deg, var(--primary-alt), var(--accent-alt));
    box-shadow: 0 0 0 10px rgba(15, 118, 110, 0.08);
}

.public-window {
    padding: 1.15rem;
}

.public-window-timesheet {
    border-radius: 1.75rem;
}

.public-window-bar,
.public-window-toolbar,
.timesheet-mock-row,
.timesheet-mock-summary {
    display: grid;
    align-items: center;
}

.public-window-bar {
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.public-window-bar span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d1d5db;
}

.public-window-bar span:nth-child(1) { background: #fb7185; }
.public-window-bar span:nth-child(2) { background: #fbbf24; }
.public-window-bar span:nth-child(3) { background: #34d399; }

.public-window-label {
    grid-column: 2;
    justify-self: end;
    color: var(--text-muted-alt);
    font-size: 0.85rem;
    font-weight: 700;
}

.public-window-toolbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.public-window-pill {
    padding: 0.75rem 0.9rem;
    border-radius: 1rem;
    background: var(--surface-muted-alt);
    color: var(--text-alt);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.public-window-pill.accent {
    background: rgba(249, 115, 22, 0.13);
    color: #c2410c;
}

.timesheet-mock-table {
    display: grid;
    gap: 0.7rem;
}

.timesheet-mock-row {
    grid-template-columns: 2.2fr repeat(3, 0.8fr) 0.9fr;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #fff;
    color: var(--text-alt);
}

.timesheet-mock-row.head {
    background: transparent;
    color: var(--text-muted-alt);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 0;
    padding-bottom: 0.2rem;
}

.timesheet-mock-row strong {
    color: var(--primary-dark-alt);
}

.timesheet-mock-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.timesheet-mock-summary div {
    padding: 1rem;
    border-radius: 1rem;
    background: var(--surface-muted-alt);
}

.timesheet-mock-summary span,
.timesheet-mock-summary strong {
    display: block;
}

.timesheet-mock-summary span {
    color: var(--text-muted-alt);
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
}

.timesheet-mock-summary strong {
    color: var(--text-alt);
}

.public-cta-section {
    padding-bottom: 6rem;
}

.public-cta {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.88), rgba(15, 23, 42, 0.84));
    padding: 3.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg-alt);
}

.pricing-toggle {
    border: 1px solid rgba(15, 118, 110, 0.12);
    background: rgba(255, 255, 255, 0.92);
}

.pricing-toggle-btn {
    border: none;
    background: transparent;
    color: var(--text-muted-alt);
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    transition: var(--transition-alt);
    font-weight: 700;
}

.pricing-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-alt), var(--accent-alt));
    color: #fff;
    box-shadow: 0 16px 30px -20px rgba(15, 118, 110, 0.8);
}

.pricing-card {
    padding: 2.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-popular {
    transform: translateY(-0.35rem);
    border-color: rgba(15, 118, 110, 0.24);
}

.pricing-badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-alt), #f59e0b);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.pricing-description {
    min-height: 3rem;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0 0.75rem;
}

.price-currency,
.price-period {
    color: var(--text-muted-alt);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
}

.price-amount {
    font-size: 3.5rem;
    line-height: 0.92;
    font-weight: 800;
    color: var(--text-alt);
}

.pricing-features {
    flex: 1 1 auto;
    margin: 1.5rem 0 2rem;
}

.pricing-features li {
    padding: 0.45rem 0;
}

.comparison-table {
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md-alt);
    background: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.15rem;
    vertical-align: middle;
}

.feature-column {
    width: 30%;
    background: rgba(15, 118, 110, 0.06);
}

.accordion-item {
    border: 1px solid rgba(15, 118, 110, 0.08);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: var(--shadow-sm-alt);
}

.accordion-button {
    font-weight: 700;
    color: var(--text-alt);
}

.accordion-button:not(.collapsed) {
    background: rgba(15, 118, 110, 0.06);
    color: var(--text-alt);
}

.testimonial-card,
.testimonial-card-simple {
    padding: 2rem;
}

.testimonial-quote,
.testimonial-quote-simple {
    color: var(--text-alt);
    font-style: normal;
    line-height: 1.7;
}

.testimonial-quote {
    font-size: 1.08rem;
}

.testimonial-card-simple {
    border-left: 4px solid rgba(15, 118, 110, 0.3);
}

.avatar-placeholder,
.testimonial-avatar img {
    width: 3.25rem;
    height: 3.25rem;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-alt), var(--accent-alt));
    color: #fff;
    font-weight: 800;
}

.contact-form-card {
    padding: 2.4rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.9fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-main-column,
.contact-sidebar-column {
    min-width: 0;
}

.contact-sidebar-column {
    display: grid;
    gap: 1rem;
    position: relative;
    isolation: isolate;
}

.contact-rail-card,
.contact-guidance-card,
.contact-faq-card,
.contact-support-overview {
    overflow: hidden;
}

.contact-rail-card {
    position: relative;
    z-index: 1;
}

.contact-support-overview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 247, 0.96));
}

.contact-support-overview__copy {
    max-width: 42rem;
}

.contact-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-route-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.15rem;
    border-radius: 1.2rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 118, 110, 0.08);
    box-shadow: var(--shadow-sm-alt);
    color: var(--text-alt);
    transition: var(--transition-alt);
}

.contact-route-card--button {
    width: 100%;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.contact-route-card:hover,
.contact-route-card:focus {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.18);
    color: var(--text-alt);
    box-shadow: var(--shadow-md-alt);
}

.contact-route-card strong {
    font-size: 1rem;
}

.contact-route-card span:last-child {
    color: var(--text-muted-alt);
    line-height: 1.6;
    font-size: 0.94rem;
}

.contact-route-icon {
    width: 2.85rem;
    height: 2.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(21, 94, 117, 0.08));
    color: var(--primary-alt);
    font-size: 1rem;
}

.support-assistant-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 248, 0.96));
}

.support-assistant-preview {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.support-assistant-preview__window {
    border-radius: 1.4rem;
    border: 1px solid rgba(15, 118, 110, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 245, 0.92));
    box-shadow: var(--shadow-sm-alt);
    overflow: hidden;
}

.support-assistant-preview__header {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-alt);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-assistant-preview__list {
    margin: 0;
    padding: 1rem 1rem 1rem 2.2rem;
    color: var(--text-muted-alt);
}

.support-assistant-preview__list li + li {
    margin-top: 0.7rem;
}

.support-chat-suggestions--preview {
    margin-bottom: 0;
    align-content: start;
}

.support-overlay-shell {
    position: fixed;
    inset: 0;
    z-index: 1085;
    pointer-events: none;
}

.support-overlay-shell > * {
    pointer-events: auto;
}

.support-overlay-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    background: rgba(15, 23, 42, 0.14);
    opacity: 0;
}

.support-overlay-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(26rem, 100vw);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    padding: 1.5rem 1.35rem 1.2rem;
    border-left: 1px solid rgba(15, 118, 110, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(248, 250, 252, 0.996));
    box-shadow: -24px 0 60px -42px rgba(15, 23, 42, 0.38);
    transform: translateX(100%);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.support-overlay-panel[hidden] {
    display: none !important;
}

.support-overlay-shell--open {
    pointer-events: auto;
}

.support-overlay-shell--open .support-overlay-backdrop {
    opacity: 1;
}

.support-overlay-shell--open .support-overlay-panel {
    transform: translateX(0);
}

.support-overlay-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
}

.support-overlay-panel__identity {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.support-overlay-panel__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fafc, #e2e8f0);
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #0f172a;
    font-size: 1rem;
}

.support-overlay-panel__eyebrow {
    display: inline-flex;
    margin-bottom: 0.18rem;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.support-overlay-panel__title {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
    color: var(--text-alt);
}

.support-overlay-panel__intro {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.support-overlay-panel__pill {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    box-shadow: none;
}

.support-overlay-panel__intro-copy {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.support-overlay-panel__close {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-overlay-panel__footer {
    display: grid;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.support-overlay-launcher {
    position: absolute;
    right: 1.4rem;
    bottom: 1.35rem;
    border: none;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    padding: 0.95rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    box-shadow: 0 18px 36px -24px rgba(15, 23, 42, 0.55);
    transition: var(--transition-alt);
}

.support-overlay-launcher:hover,
.support-overlay-launcher:focus {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px -24px rgba(15, 23, 42, 0.62);
}

.support-overlay-launcher__icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.support-overlay-launcher__text {
    white-space: nowrap;
}

.support-assistant-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.support-assistant-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-alt);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
}

.support-chat-window {
    display: grid;
    gap: 1rem;
    min-height: 0;
    overflow-y: auto;
    padding: 0.2rem 0.35rem 0.35rem 0;
    margin-bottom: 0.5rem;
}

.support-chat-message {
    display: flex;
}

.support-chat-message--user {
    justify-content: flex-end;
}


.support-chat-bubble {
    width: min(100%, 18.75rem);
    padding: 1rem 1.05rem;
    border-radius: 0.95rem;
    box-shadow: 0 14px 28px -24px rgba(15, 23, 42, 0.22);
}

.support-chat-message--bot .support-chat-bubble {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.support-chat-message--user .support-chat-bubble {
    background: #eef2f7;
    color: var(--text-alt);
}

.support-chat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    opacity: 0.8;
}

.support-chat-bubble p {
    margin-bottom: 0;
}

.support-chat-bubble ul {
    margin: 0.8rem 0 0;
    padding-left: 1.1rem;
}

.support-chat-bubble li + li {
    margin-top: 0.45rem;
}

.support-chat-scope {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: #64748b;
}

.support-chat-message--user .support-chat-scope {
    color: #64748b;
}

.support-chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.support-chat-suggestions--overlay {
    margin-bottom: 0;
}

.support-chat-chip {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: #f8fafc;
    color: #0f172a;
    border-radius: 999px;
    padding: 0.72rem 0.95rem;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition-alt);
}

.support-chat-chip:hover,
.support-chat-chip:focus {
    background: #eef2f7;
    color: #0f172a;
}

.support-chat-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: end;
}

.support-chat-form--overlay {
    gap: 0.55rem;
    align-items: center;
}

.support-chat-input {
    resize: none;
    min-height: 3.6rem;
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    border-color: rgba(148, 163, 184, 0.42);
    box-shadow: none;
}

.support-chat-submit {
    min-height: 3.6rem;
    min-width: 3.6rem;
    padding-inline: 0.9rem;
    border-radius: 0.85rem;
    font-weight: 700;
    background: #0f172a;
    border-color: #0f172a;
}

.support-chat-note {
    margin-top: 0.85rem;
    font-size: 0.88rem;
    color: var(--text-muted-alt);
}

.support-chat-note--overlay {
    margin-top: 0;
    font-size: 0.8rem;
    line-height: 1.6;
}

.support-chat-escalation {
    margin-top: 1rem;
}

.support-chat-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted-alt);
}

.contact-guidance-card p,
.contact-faq-card p {
    color: var(--text-muted-alt);
}

.contact-form-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
    margin-bottom: 2rem;
}

.contact-stat {
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
}

.contact-item {
    padding: 1rem;
    border-radius: 1rem;
    transition: var(--transition-alt);
}

.contact-item:hover {
    background: rgba(15, 118, 110, 0.05);
    transform: translateX(4px);
}

.contact-action-card {
    display: block;
    text-decoration: none;
    border: 1px solid rgba(15, 118, 110, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm-alt);
}

.contact-action-card:hover,
.contact-action-card:focus {
    color: inherit;
    border-color: rgba(15, 118, 110, 0.18);
    box-shadow: var(--shadow-md-alt);
}

.contact-static-card {
    border: 1px solid rgba(15, 118, 110, 0.08);
    background: rgba(255, 255, 255, 0.66);
}

.contact-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    color: var(--primary-alt);
    font-size: 0.88rem;
    font-weight: 700;
}

.contact-static-card .contact-action-link {
    color: var(--text-muted-alt);
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-alt), var(--accent-alt));
    border: none;
    padding: 0.9rem 1.25rem;
    font-weight: 700;
    border-radius: 1rem;
    box-shadow: 0 16px 30px -20px rgba(15, 118, 110, 0.8);
}

.contact-submit-btn:hover {
    transform: translateY(-1px);
}

.btn-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group-text {
    background: #f5fbf9;
    border-color: #dceae6;
    color: var(--text-muted-alt);
}

.legal-shell {
    padding: 2.4rem;
}

.legal-shell h2 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.legal-shell h3 {
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

.legal-shell p,
.legal-shell li {
    line-height: 1.8;
}

.legal-shell ul {
    padding-left: 1.1rem;
}

.navbar-alt {
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.public-navbar-shell {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: min(100%, 1560px);
    margin: 0 auto;
    padding-inline: clamp(1rem, 2vw, 2rem);
}

.navbar-transparent-alt {
    background: rgba(15, 23, 42, 0.14) !important;
}

.navbar-scrolled-alt {
    background: rgba(255, 253, 248, 0.92) !important;
    box-shadow: 0 24px 60px -42px rgba(15, 23, 42, 0.65);
}

.navbar-brand,
.navbar-nav-alt .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
}

.navbar-brand {
    flex: 0 0 auto;
    letter-spacing: -0.03em;
}

.navbar-collapse-alt {
    align-items: center;
}

.navbar-scrolled-alt .navbar-brand,
.navbar-scrolled-alt .navbar-nav-alt .nav-link {
    color: var(--text-alt) !important;
}

.navbar-scrolled-alt .navbar-actions .btn-outline-light {
    color: var(--text-alt);
    border-color: rgba(15, 23, 42, 0.16);
    background: rgba(255, 255, 255, 0.78);
}

.navbar-scrolled-alt .navbar-actions .btn-outline-light:hover,
.navbar-scrolled-alt .navbar-actions .btn-outline-light:focus {
    color: var(--text-alt);
    border-color: rgba(15, 23, 42, 0.24);
    background: rgba(241, 245, 249, 0.96);
    box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.4);
}

.navbar-scrolled-alt .navbar-actions .btn-light {
    box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.35);
}

.navbar-nav-alt {
    align-items: center;
    gap: 0.15rem;
}

.navbar-actions .btn {
    border-radius: 0.95rem;
    padding-inline: 1.15rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.navbar-actions .btn-outline-light,
.navbar-actions .btn-light {
    min-height: 3.2rem;
}

.navbar-nav-alt .nav-link {
    padding-inline: 0.7rem !important;
    margin: 0 0.12rem;
    white-space: nowrap;
}

.navbar-toggler {
    border-radius: 0.95rem;
    border-color: rgba(255, 255, 255, 0.26);
    padding: 0.7rem 0.9rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(94, 234, 212, 0.22);
}

@media (min-width: 992px) {
    .public-navbar-shell {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .navbar-collapse-alt {
        display: flex !important;
        justify-content: center;
        min-width: 0;
    }

    .navbar-nav-alt {
        margin: 0 auto;
    }

    .navbar-actions {
        justify-self: end;
    }
}

@media (min-width: 1400px) {
    body.landing-page .public-hero--compact > .container {
        width: min(100%, 80rem);
    }

    .public-section {
        padding: 6.75rem 0;
    }

    .public-section-tight {
        padding-top: 3rem;
    }

    .public-section-header {
        max-width: 42rem;
    }

    .logo-cloud {
        max-width: 68rem;
        margin-inline: auto;
    }

    .public-grid-features {
        max-width: 84rem;
        --bs-gutter-x: 1.75rem;
        --bs-gutter-y: 1.75rem;
    }

    .public-grid-steps {
        align-items: center;
    }

    .public-window-timesheet {
        width: min(100%, 42rem);
        margin-left: auto;
    }

    .pricing-plan-grid {
        max-width: 88rem;
        --bs-gutter-x: 1.75rem;
        --bs-gutter-y: 1.75rem;
    }

    .comparison-wrap {
        max-width: 86rem;
    }

    .faq-shell {
        max-width: 70rem;
    }

    .public-story-grid {
        gap: 1.75rem;
    }

    .about-page-shell,
    .public-contact-shell {
        max-width: 84rem;
    }

    .about-top-grid {
        max-width: 72rem;
        margin-inline: auto;
    }

    .about-values-grid {
        max-width: 80rem;
        margin-inline: auto;
        --bs-gutter-x: 1.5rem;
    }

    .testimonials-featured-grid,
    .testimonials-story-grid {
        max-width: 82rem;
        margin-inline: auto;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    .public-contact-grid {
        max-width: 80rem;
        margin-inline: auto;
        --bs-gutter-x: 1.6rem;
    }
}

@media (min-width: 1200px) {
    .contact-rail-card {
        position: sticky;
        top: 7.5rem;
    }
}

@media (max-width: 1199.98px) {
    .navbar-nav-alt .nav-link {
        font-size: 0.94rem;
        padding-inline: 0.55rem !important;
    }

    .navbar-actions .btn {
        padding-inline: 0.95rem;
        font-size: 0.95rem;
    }
}

.footer-alt {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.82);
}

.footer-alt h4,
.footer-alt h5 {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.footer-newsletter .form-control {
    border: none;
    border-radius: 0.95rem;
}

.footer-newsletter .btn {
    border-radius: 0.95rem;
}

@media (max-width: 991.98px) {
    .public-hero {
        padding-top: 7.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-rail-card {
        position: static;
    }

    .contact-route-grid {
        grid-template-columns: 1fr;
    }

    .support-assistant-preview {
        grid-template-columns: 1fr;
    }

    .support-overlay-shell {
        inset: 0;
    }

    .support-overlay-launcher {
        right: 1rem;
        bottom: 1rem;
    }

    .public-section {
        padding: 4.5rem 0;
    }

    .public-section-tight {
        padding-top: 1.5rem;
    }

    .public-main {
        padding: 4rem 0 4.5rem;
    }

    .public-section-header {
        max-width: 38rem;
        margin-bottom: 0 !important;
    }

    .public-card,
    .feature-card-alt,
    .pricing-card,
    .testimonial-card,
    .testimonial-card-simple,
    .contact-form-card,
    .support-assistant-card,
    .contact-guidance-card,
    .contact-faq-card,
    .contact-support-overview,
    .legal-shell {
        padding: 1.6rem;
    }

    .public-cta {
        padding: 2.75rem 2rem;
        border-radius: 1.6rem;
    }

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

    .navbar-alt {
        padding-inline: 1rem;
    }

    .public-navbar-shell {
        gap: 0.85rem;
        padding-inline: 0.4rem;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .hero-app-body {
        grid-template-columns: 1fr;
    }

    .hero-app-sidebar {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .navbar-actions {
        margin-top: 1rem;
        width: 100%;
        gap: 0.75rem;
        margin-left: 0;
    }

    .navbar-actions .btn {
        flex: 1 1 auto;
    }

    .navbar-collapse-alt {
        flex-basis: 100%;
        margin-top: 0.9rem;
        padding: 1rem;
        border-radius: 1.15rem;
        background: rgba(255, 253, 248, 0.96);
        border: 1px solid rgba(15, 118, 110, 0.08);
        box-shadow: 0 24px 60px -42px rgba(15, 23, 42, 0.55);
    }

    .navbar-nav-alt {
        align-items: stretch;
    }

    .navbar-nav-alt .nav-link {
        border-radius: 0.9rem;
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    body.landing-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .public-hero {
        padding: 7rem 0 4.25rem;
    }

    .public-hero--compact {
        min-height: 28rem;
        padding-bottom: 3.5rem;
    }

    .public-navbar-shell {
        padding-inline: 0;
    }

    .public-display {
        font-size: 2.55rem;
    }

    .public-section {
        padding: 3.5rem 0;
    }

    .public-section-tight {
        padding-top: 1rem;
    }

    .public-main {
        padding: 3rem 0 3.75rem;
    }

    .public-section-title {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .public-section-copy,
    .hero-subtitle,
    .public-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .public-card,
    .feature-card-alt,
    .pricing-card,
    .testimonial-card,
    .testimonial-card-simple,
    .contact-form-card,
    .support-assistant-card,
    .contact-guidance-card,
    .contact-faq-card,
    .contact-support-overview,
    .legal-shell {
        padding: 1.35rem;
        border-radius: 1.2rem;
    }

    .contact-route-card {
        padding: 1rem;
    }

    .support-overlay-shell {
        inset: 0;
    }

    .support-overlay-panel {
        width: 100%;
        padding: 1rem 0.95rem 0.95rem;
        border-left: none;
    }

    .support-overlay-launcher {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        width: auto;
        justify-content: center;
    }

    .support-overlay-panel__identity {
        align-items: flex-start;
    }

    .support-overlay-panel__pill {
        width: 100%;
        justify-content: center;
    }

    .support-assistant-header {
        flex-direction: column;
        align-items: stretch;
    }

    .support-assistant-badge {
        white-space: normal;
        justify-content: center;
    }

    .support-chat-form {
        grid-template-columns: 1fr;
    }

    .support-chat-submit {
        width: 100%;
    }

    .support-chat-chip {
        width: 100%;
        text-align: left;
    }

    .public-card-icon,
    .feature-icon-alt {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1rem;
        margin-bottom: 0.9rem;
    }

    .public-proofbar {
        gap: 0.55rem;
    }

    .public-proofbar span,
    .logo-chip {
        padding: 0.62rem 0.85rem;
        font-size: 0.88rem;
    }

    .hero-buttons-alt,
    .public-actions,
    .public-cta-actions {
        width: 100%;
    }

    .public-actions .btn,
    .public-cta-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .pricing-toggle-btn {
        padding: 0.6rem 1rem;
        font-size: 0.92rem;
    }

    .price-amount {
        font-size: 2.65rem;
    }

    .contact-form-header {
        margin-bottom: 1.4rem;
        padding-bottom: 1.1rem;
    }

    .hero-metrics,
    .logo-cloud,
    .public-window-toolbar,
    .timesheet-mock-summary {
        grid-template-columns: 1fr;
        display: grid;
    }

    .timesheet-mock-row {
        grid-template-columns: 1.5fr repeat(3, 0.7fr) 0.8fr;
        font-size: 0.82rem;
        padding: 0.75rem;
    }

    .public-story-grid,
    .public-mini-grid,
    .public-stat-band {
        grid-template-columns: 1fr;
    }

    .public-cta {
        padding: 2.15rem 1.25rem;
    }

    .footer-newsletter {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual-shell,
    .hero-app-frame,
    .feature-card-alt,
    .public-window,
    .public-cta,
    .logo-chip {
        transform: none !important;
    }
}
