body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

:root {
    --beep-white: #ffffff;
    --beep-black: #000000;
    --beep-green: #235e53;
    --beep-orange: #ff4208;
    --beep-turquoise: #17a2b8;
    --beep-lightgray: #f1f1f1;
}

.bg-beep-green {
    background-color: #235e53;
}

.text-beep-green {
    color: #235e53;
}

.bg-header-green {
    background-color: #225E54;
}

.text-header-green {
    color: #225E54;
}

.bg-beep-orange {
    background-color: #ff4208;
}

.text-beep-orange {
    color: #ff4208;
}

.border-beep-orange {
    border-color: #ff4208;
}

.section-padding {
    padding: 4rem 0;
}

.section-padding-sm {
    padding: 2.5rem 0;
}

.heading-1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.heading-2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.heading-3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.body-large {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

.body-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.body-small {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.button-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

@media (max-width: 768px) {
    .heading-1 {
        font-size: 2.5rem;
    }
    .heading-2 {
        font-size: 1.875rem;
    }
    .heading-3 {
        font-size: 1.25rem;
    }
}

.radius-standard {
    border-radius: 0.5rem;
}

.shadow-subtle {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-elevated {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition-standard {
    transition: all 0.2s ease-in-out;
}

.transition-smooth {
    transition: all 0.3s ease-in-out;
}

.focus-ring:focus-visible,
input:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 66, 8, 0.5);
    border-color: #ff4208;
}

.logo-scroller-inner img {
    height: 40px;
    margin: 0 2rem;
    transition: transform 0.25s ease, opacity 0.25s ease;
    will-change: transform;
}

.logo-scroller-inner img:hover {
    transform: scale(1.06);
}

.logo-scroller.inverted .logo-scroller-inner img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.logo-scroller.inverted .logo-scroller-inner img:hover {
    opacity: 1;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    color: #ff4208;
}

.stat-value {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.stat-label {
    font-weight: 500;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .hero-badges {
        gap: 0.75rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
}

.badge-icon svg {
    width: 16px;
    height: 16px;
    color: #ff4208;
}

.badge .badge-value {
    font-weight: 800;
}

.badge .badge-label {
    opacity: 0.9;
}

.ui-icon {
    display: block;
    shape-rendering: geometricPrecision;
    text-rendering: optimizeLegibility;
}

.ui-icon path,
.ui-icon circle,
.ui-icon line,
.ui-icon polyline,
.ui-icon rect {
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.time-picker-wrapper {
    position: absolute;
    right: 0;
    bottom: 2.5rem;
    z-index: 100;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
}

.time-picker-body {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
}

.location-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0.25rem;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border: 2px solid #ff4208;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
}

.location-select-dropdown > div {
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    color: #374151;
}

.location-select-dropdown > div:hover,
.location-select-dropdown > div.selected {
    background-color: #235e53;
    color: white;
}

#logos1,
#logos2 {
    transition: opacity 2s ease-in-out;
}

#logos1.visible {
    opacity: 1;
}

#logos2.visible {
    opacity: 1;
}

#logos1.hidden {
    opacity: 0;
}

#logos2.hidden {
    opacity: 0;
}
