@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{

    /* Brand palette */
    --btn-color: #f9f9f9;/* button text color */
    --btn-bg: #0081cc;/* primary brand blue */

    --primary-text-color: #0081cc; /* LotBot primary */
    --link-hover: #0081cc;
    --input-hover-bd-color: #0081cc;
}


/* LotBot primary color overrides for Tailwind utility classes (no rebuild) */
.tw-text-primary{
    color: #0081cc !important;
}
.tw-bg-primary{
    background-color: #0081cc !important;
}
.tw-border-primary{
    border-color: #0081cc !important;
}

/* Map Tailwind black utility to brand black */
.tw-text-black{
    color: #191919 !important;
}
.tw-bg-black{
    background-color: #191919 !important;
}

/* Custom classes to replace Tailwind */
.text-primary {
    color: #0081cc !important;
}

.body-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #f9f9f9;
}

.header-main {
    position: absolute;
    top: 0;
    z-index: 20;
    display: flex;
    height: 60px;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    padding: 0 5%;
    align-items: center;
    justify-content: space-around;
}

.logo-link {
    height: 48px;
    width: auto;
    padding: 4px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.header-nav {
    display: flex;
    height: 100%;
    width: max-content;
    gap: 1.25rem;
    font-size: 1rem;
    color: #191919;
    margin: 0 auto;
    align-items: center;
}

.menu-button {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 50;
    font-size: 1.875rem;
    color: #191919;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.menu-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

section, header{
    box-sizing: border-box;
}

section > div {
    box-sizing: border-box;
}

.hero-section {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    overflow: hidden;
    padding: 0 5%;
    margin-top: 50px;
}

.hero-container {
    display: flex;
    height: 100%;
    min-height: 90vh;
    width: 100%;
    max-width: 100%;
    place-content: center;
    gap: 0.75rem;
    place-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    place-content: center;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 80px;
}

.hero-description {
    margin-top: 2.5rem;
    max-width: 450px;
    padding: 0.5rem;
    text-align: justify;
}

.hero-buttons {
    margin-top: 1rem;
    display: flex;
    place-items: center;
    gap: 1rem;
    overflow: hidden;
    padding: 0.5rem;
}

.hero-image-container {
    display: flex;
    width: 100%;
    max-width: 50%;
    place-content: center;
    place-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    display: flex;
    max-height: 580px;
    min-height: 450px;
    max-width: 650px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    object-fit: contain;
}

.numbers-section {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    place-content: center;
    place-items: center;
    overflow: hidden;
    padding: 1.5rem;
}

.numbers-container {
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 2rem;
}

.numbers-title {
    font-size: 1.875rem;
}

.numbers-grid {
    display: flex;
    width: 100%;
    place-content: center;
    gap: 2.5rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-big {
    font-size: 3.75rem;
}

.metric-small {
    font-size: 1.25rem;
    font-weight: 500;
    color: #374151;
}

.features-section {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    place-content: center;
    place-items: center;
    overflow: hidden;
    padding: 1.5rem;
}

.features-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 1.25rem;
}

.features-header {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.features-title {
    font-size: 2.25rem;
    font-weight: 600;
}

.features-subtitle {
    font-size: 1.25rem;
}

.features-subtitle-small {
    font-size: 1rem;
}

.features-grid {
    margin-top: 1.5rem;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    place-content: center;
    gap: 0.5rem;
}

.feature-card {
    display: flex;
    width: 350px;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card-description {
    color: #595959;
}

.pricing-section {
    margin-top: 1.25rem;
    display: flex;
    width: 100%;
    flex-direction: column;
    place-items: center;
    padding: 2%;
}

.pricing-title {
    font-size: 1.875rem;
    font-weight: 500;
    color: #0081cc;
}

.pricing-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.pricing-grid {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    place-content: center;
    gap: 2rem;
}

.pricing-card {
    display: flex;
    width: 380px;
    flex-direction: column;
    place-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card-primary {
    border: 2px solid #0081cc;
}

.pricing-card-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4b5563;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 600;
}

.pricing-period {
    font-size: 1.5rem;
    color: #4b5563;
}

.pricing-note {
    margin-top: -0.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.pricing-description {
    margin-top: 0.75rem;
    text-align: center;
    color: #4b5563;
}

.btn-primary {
    background-color: #0081cc;
    color: #f9f9f9;
}

.btn-secondary {
    background-color: #c8cbf984;
    color: #0081cc;
}

.input-full {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.modal {
    border-radius: 8px;
    padding: 1.5rem;
    width: 95%;
    max-width: 520px;
    box-sizing: border-box;
    overflow: hidden;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.form-label {
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.form-status {
    font-size: 0.875rem;
}

.form-buttons {
    margin-top: 0.5rem;
    display: flex;
    justify-content: end;
    gap: 0.5rem;
}

.hidden {
    display: none;
}

.faq-section {
    margin-top: 1.25rem;
    display: flex;
    width: 100%;
    flex-direction: column;
    place-items: center;
    padding: 2%;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 500;
    color: #0081cc;
}

.faq-container {
    margin-top: 2rem;
    width: 100%;
    max-width: 900px;
}

.faq-item {
    overflow: clip;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-bottom: 0.75rem;
}

.faq-summary {
    cursor: pointer;
    user-select: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-content {
    padding: 1rem;
    padding-top: 0.5rem;
    color: #4b5563;
}

.footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid #e6e6e6;
}

.footer-container {
    display: grid;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    place-items: center;
    gap: 1.5rem;
}

.footer-logo {
    max-width: 120px;
    display: block;
}

.footer-nav {
    display: grid;
    grid-flow: column;
    gap: 1rem;
    text-align: center;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
}

.footer-separator {
    color: #666;
    font-weight: 300;
}

.footer-copyright {
    font-size: 0.875rem;
}

.fixed {
    position: fixed;
}

/* Header pricing button styles */
.pricing-button-container {
    margin: 0 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
}

.pricing-button {
    border-radius: 6px;
    background-color: #0081cc;
    padding: 0.5rem 0.75rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Responsive design for pricing button */
@media (max-width: 768px) {
    .pricing-button-container {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
}

/* Page content styles */
.page-content {
    margin-top: 80px;
    padding: 2rem 5%;
    min-height: calc(100vh - 200px);
}

.page-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0081cc;
    margin-bottom: 1rem;
    text-align: center;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    text-align: center;
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        height: fit-content;
        max-height: 320px;
        min-height: 180px;
        width: 100%;
    }
    
    .numbers-grid {
        flex-direction: column;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .feature-card {
        width: 100%;
    }
    
    .pricing-grid {
        flex-direction: column;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .header-main {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .collapsible-header {
        margin-right: auto;
        flex-direction: column;
        place-items: end;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0 1rem;
        margin-top: 50px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.375;
    }
    
    .hero-image-wrapper {
        max-height: 320px;
        min-height: 180px;
    }
    
    .pricing-title,
    .faq-title {
        font-size: 1.5rem;
    }
    
    .menu-button {
        display: block;
    }
}

@media (min-width: 1025px) {
    .menu-button {
        display: none;
    }
}

/* Billing toggle segmented control */
.billing-toggle{
    display: inline-flex;
    border: 2px solid #0081cc;
    border-radius: 9999px;
    overflow: hidden;
}
.billing-option{
    padding: 6px 14px;
    background: transparent;
    color: #0081cc;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
.billing-option.active{
    background: #0081cc;
    color: #ffffff;
}
.billing-option:focus{
    outline: 2px solid #9dd7f2; /* light brand blue */
    outline-offset: 2px;
}


html {
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

/* Global text color defaults */
body {
    color: #191919;
    background-color: #f9f9f9;
}
h1, h2, h3, h4, h5, h6 {
    color: #191919;
}

header{
    /* background-color: #fff;
    color: #000; */
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    box-sizing: border-box;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 10px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
    text-decoration: none;
    color: inherit;
}


.header-links:hover {
    color: var(--link-hover);
}

.primary-text-color{
    color: var(--primary-text-color);
}

/* Opacity classes for mobile menu toggle */
.opacity-100{
    opacity: 1 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 6px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-family: inherit;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.02);
}

.btn:hover{

}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 6px;
    /* outline: none; */
    min-width: 100px;
    border: 2px solid #818080;
    transition: border 0.3s;
    font-family: inherit;
}

.input:active, .input:focus, .input:focus-within{
    border: 2px solid var(--input-hover-bd-color);
}

.input-error{
    border-bottom: 3px solid #ff1e1e;
}

.input-error:focus-within{
    border-bottom: 3px solid #fd0101;
}

/* Simple modal base styling */
.modal::backdrop{
    background: rgba(0,0,0,0.4);
}

/* Navigation dots styling */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.footer-link{
    color: #191919;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-link:hover{
    color: #0081cc;
}


.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-card{
    box-shadow: 0px 2px 4px #757474a0;
    border-radius: 15px;
    /* width: 200px; */
    /* height: 550px; */
    padding: 10px;
}

/* --------- collapsible div ---------- */
.collapsible {
    background-color: #f3f0f0;
    color: #2b2929;
    /* cursor: pointer; */
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

/* Style for the collapsible content */
.content {
    padding: 0 18px;
    /* display: none; */
    height: 0px;
    overflow: hidden;
    background-color: transparent;
    transition: height 0.5s;
    text-align: justify;
    margin-top: 10px;
}

.collapsible .active,
.collapsible:hover {
    /* background-color: #dedddd; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        top: 0;
        right: 0;
        flex-direction: column;
        height: 100vh;
        width: 0;
        background-color: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: width 0.3s ease;
        z-index: 40;
        overflow: hidden;
    }

    header .collapsible-header.opacity-100 {
        width: 250px;
        padding: 80px 20px 20px 20px;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .header-links {
        display: block;
        padding: 15px 0;
        color: #191919;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: color 0.2s ease;
    }

    .header-links:hover {
        color: #0081cc;
    }

    .header-links:last-child {
        border-bottom: none;
    }
    
    /* Hide pricing button in mobile menu */
    .collapsible-header .pricing-button-container {
        display: none;
    }
}

/* Pricing feature lists - ensure visible bullets without relying on Tailwind rebuild */
.pricing-features{
	list-style: disc;
	list-style-position: outside;
	padding-left: 1.25rem; /* ~pl-5 */
}
.pricing-features li{
	margin: 0.25rem 0; /* ~space-y-1 */
}

/* Subtle top border for minimal footer */
.footer-light-border{
    border-top: 1px solid #e6e6e6;
}