:root {
    --eh-primary-bg: #fff8f0;
    --eh-surface-low: #faf3e8;
    --eh-surface-card: #f5ede1;
    --eh-text-main: #18181b;
    --eh-text-muted: #6b7280;
    --eh-accent-secondary: #d27b17;
    /* #d27b17 */
    --eh-accent-hover: #b86910;
    --eh-border-color: rgba(24, 24, 27, 0.08);
    --eh-dark-bg: #111114;
}
body {
    font-family: 'Manrope', Roboto, sans-serif;
    background-color: var(--eh-primary-bg);
    color: var(--eh-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    transition: .3s;
}
a:hover,
a:focus,
.nav-link:focus {
	color: inherit;
}
.section-badge {
    color: var(--eh-accent-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-title {
    font-weight: 300;
    color: var(--eh-text-main);
}
.color-accent-secondary {
    color: var(--eh-accent-secondary);
}
.eh-icon-lg {
    font-size: 1.5rem !important;
    /* ~24px */
    line-height: 1;
}
.eh-icon-xl {
    font-size: 1.875rem !important;
    /* ~30px */
}
.eh-navbar {
    background-color: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--eh-border-color);
}
.eh-nav-link {
    color: var(--eh-text-main);
    font-size: 0.925rem;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0.75rem;
}
.eh-nav-link:hover {
    color: var(--eh-accent-secondary);
}
.bi-list::before {
    transition: .3s;
}
.menu-active .bi-list::before {
	content: "\F629";
}
.navbar-toggler:focus {
	box-shadow: none;
}
.btn-dark-ehonet {
    background-color: var(--eh-text-main);
    color: #fff;
    border: 1px solid var(--eh-text-main);
    border-radius: 4px;
    padding: 0.625rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn-dark-ehonet:hover {
    background-color: #27272a;
    color: #fff;
    border-color: #27272a;
}
.btn-outline-ehonet {
    background-color: transparent;
    color: var(--eh-text-main);
    border: 1px solid rgba(24, 24, 27, 0.2);
    border-radius: 4px;
    padding: 0.625rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn-outline-ehonet:hover {
    background-color: var(--eh-surface-card);
    color: var(--eh-text-main);
    border-color: rgba(24, 24, 27, 0.35);
}
.bg-surface,
.eh-card.bg-surface {
	background-color: rgb(255 248 240 / 1);
}
.bg-surface-low,
.eh-card.bg-surface-low {
	background-color: rgb(250 243 232 / 1);
}
.bg-surface-dark,
.eh-card.bg-surface-dark {
	background-color: rgb(244 237 226 / 1);
}
.eh-card {
    background-color: var(--eh-surface-low);
    border: 1px solid var(--eh-border-color);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eh-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.eh-card-subtle {
    background-color: rgba(250, 243, 232, 0.6);
    border: 1px solid rgba(24, 24, 27, 0.06);
    border-radius: 6px;
}
.difference-box {
    border: 1px solid var(--eh-border-color);
    border-radius: 8px;
}
.cta-dark-card {
    background-color: var(--eh-dark-bg);
    border-radius: 12px;
    color: #ffffff;
}
.wa-link {
    color: #20b038;
    text-decoration: none;
}



.cta-form-container {
    background-color: #ffffff;
    border-radius: 8px;
    color: var(--eh-text-main);
}
.cta-form-container .form-control,
.cta-form-container .form-select {
    border: 1px solid #e4e4e7;
    border-radius: 4px;
    padding: 0.625rem 0.85rem;
    font-size: 0.9rem;
}
.cta-form-container .form-control:focus,
.cta-form-container .form-select:focus {
    border-color: var(--eh-accent-secondary);
    box-shadow: 0 0 0 3px rgba(210, 123, 23, 0.15);
}
.eh-footer {
    border-top: 1px solid var(--eh-border-color);
}