@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    --brand-main: #0284C7; /* Sky Blue */
    --ui-base-dark: #1E293B; /* Slate 800 */
    --tone-highlight: #F97316; /* Orange */
    --surface-light: #F8FAFC; /* Slate 50 */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
    
    --gradient-primary: linear-gradient(135deg, var(--brand-main), #0369A1);
    --gradient-overlay: linear-gradient(to right, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.6));
}

body {
    font-family: var(--font-text);
    color: var(--ui-base-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Custom DOM Classes */
.nav-wrapper-main {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
}

.logo-text-mark {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-main);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-pane {
    display: none;
}

.mobile-nav-pane.is-active {
    display: block;
}

.footer-area-base {
    background-color: var(--ui-base-dark);
    color: var(--surface-light);
}

/* Index Pages */
.mobility-intro-wrap {
    position: relative;
    color: var(--surface-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.mobility-content-box {
    background-color: var(--surface-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.habit-step-item {
    border-left: 4px solid var(--tone-highlight);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.habit-step-num {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* Reserve Page Features */
.methodology-grid-shell {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.methodology-item-block {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.methodology-item-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.colored-list-points {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.colored-list-points li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.colored-list-points li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--tone-highlight);
    color: white;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.colored-list-points {
    counter-reset: item;
}

.faq-wrapper-block details {
    background: var(--surface-light);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-wrapper-block summary {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    background: white;
    border: 1px solid #e2e8f0;
}

.faq-wrapper-block .faq-answer-text {
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-top: none;
}

/* Expert Page */
.stat-num-box {
    text-align: center;
    padding: 2rem;
    background: var(--surface-light);
    border-radius: 1rem;
    border-bottom: 4px solid var(--brand-main);
}

.stat-huge-digit {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-main);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Cookie Banner */
#cookie-banner {
    background-color: var(--ui-base-dark);
    color: var(--surface-light);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-decline {
    background-color: #4B5563;
    color: white;
}

/* Utility layout */
.min-h-layout {
    min-height: calc(100vh - 80px - 200px); /* header + footer approx */
}