/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
}

.section:nth-child(even) {
    background: linear-gradient(180deg, rgba(14, 124, 97, 0.03) 0%, transparent 100%);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento-grid {
    display: grid;
    gap: 1.25rem;
}

.bento-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bento-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bento-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.bento-tile {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-tile:hover {
    box-shadow: 0 8px 30px rgba(14, 124, 97, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
    border-color: transparent;
}

.bento-tile:hover::before {
    opacity: 1;
}

.bento-tile-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(14, 124, 97, 0.08), rgba(232, 113, 43, 0.06));
    border-radius: 14px;
}

.bento-tile h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.bento-tile p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8125rem 1.625rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #0B9E78);
    color: #fff;
    box-shadow: 0 4px 14px rgba(14, 124, 97, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
    color: #fff;
    box-shadow: 0 6px 20px rgba(14, 124, 97, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary), #F09040);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232, 113, 43, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(232, 113, 43, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
    border-radius: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.25rem;
    gap: 1.5rem;
}

.site-logo {
    font-size: 1.3125rem;
    font-weight: 800;
    color: var(--color-primary);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.site-logo:hover {
    color: var(--color-primary-hover);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.25s;
}

.site-nav a:hover {
    color: var(--color-primary);
}

.site-nav a:hover::after {
    width: 100%;
}

.btn-header {
    font-size: 0.875rem;
    padding: 0.5625rem 1.375rem;
    white-space: nowrap;
}

.btn-header-mobile {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 124, 97, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 113, 43, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero p {
    font-size: 1.1875rem;
    color: var(--color-text-light);
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.hero-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badges {
    margin-top: 0.5rem;
}

/* ============================================================
   QUOTE PLACEHOLDER
   ============================================================ */
.quote-placeholder {
    background: var(--color-surface);
    border: 2px dashed var(--color-border);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-text-light);
    position: relative;
}

.quote-placeholder::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(14, 124, 97, 0.1), rgba(232, 113, 43, 0.1));
    z-index: -1;
}

.quote-placeholder p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    padding: 0.4375rem 1rem;
    background: linear-gradient(135deg, rgba(14, 124, 97, 0.08), rgba(14, 124, 97, 0.04));
    color: var(--color-primary);
    border: 1px solid rgba(14, 124, 97, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge::before {
    content: '✓';
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
}

/* ============================================================
   REGIONEN (Bundesländer list)
   ============================================================ */
.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.region-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
}

.region-card::after {
    content: '→';
    position: absolute;
    top: 1.375rem;
    right: 1.375rem;
    font-size: 1rem;
    color: var(--color-text-light);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s;
}

.region-card:hover {
    box-shadow: 0 8px 30px rgba(14, 124, 97, 0.1);
    transform: translateY(-3px);
    border-color: var(--color-primary);
    color: var(--color-text);
}

.region-card:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-primary);
}

.region-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.region-card span {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* ============================================================
   CITIES GRID
   ============================================================ */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
}

.city-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.city-link:hover {
    background: linear-gradient(135deg, var(--color-primary), #0B9E78);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(14, 124, 97, 0.25);
    transform: translateY(-2px);
}

.city-link-icon {
    position: absolute;
    bottom: 6px;
    right: 8px;
    color: var(--color-primary);
    opacity: 0.1;
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: none;
}

.city-link-icon svg {
    display: block;
    width: 26px;
    height: 26px;
}

.city-link:hover .city-link-icon {
    color: #fff;
    opacity: 0.2;
}

.city-link .city-pop {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-left: auto;
    transition: color 0.5s;
}

.city-link:hover .city-pop {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   NEIGHBORS
   ============================================================ */
.neighbors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.neighbor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5625rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.25s;
}

.neighbor-link::before {
    content: '📍';
    font-size: 0.75rem;
}

.neighbor-link:hover {
    background: linear-gradient(135deg, var(--color-primary), #0B9E78);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 124, 97, 0.2);
}

/* ============================================================
   EXPERTS PLACEHOLDER
   ============================================================ */
.experts-placeholder {
    background: linear-gradient(135deg, rgba(14, 124, 97, 0.03), rgba(232, 113, 43, 0.03));
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
}

.experts-placeholder p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    max-width: 500px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

/* ============================================================
   MAP
   ============================================================ */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
    max-width: 800px;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    margin-bottom: 0.875rem;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: rgba(14, 124, 97, 0.3);
}

.faq-item.open {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(14, 124, 97, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.375rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-item.open .faq-question {
    color: var(--color-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--color-text-light);
    transition: all 0.3s;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: 50%;
}

.faq-item.open .faq-question::after {
    content: '−';
    background: var(--color-primary);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-text);
    color: #fff;
    padding: 3.5rem 0 1.5rem;
    margin-top: 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-size: 1.3125rem;
    font-weight: 800;
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    line-height: 1.65;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8125rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-text-light);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb span {
    color: var(--color-text-light);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
}

.contact-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.contact-item h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.0625rem;
    font-weight: 600;
}

/* ============================================================
   IMPRESSUM
   ============================================================ */
.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2.5rem 0 0.75rem;
    color: var(--color-text);
}

.legal-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
    text-align: center;
    padding: 6rem 0;
}

.page-404 h1 {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-404 p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   TRUST INDICATORS (extra details)
   ============================================================ */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.trust-item strong {
    color: var(--color-text);
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

.lead-form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.lead-form-progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-text-light);
    background: var(--color-surface);
    transition: all 0.3s;
    flex-shrink: 0;
}

.lead-form-progress-step.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.lead-form-progress-step.done {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.lead-form-progress-bar {
    width: 60px;
    height: 3px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.lead-form-progress-fill {
    width: 0;
    height: 100%;
    background: var(--color-primary);
    border-radius: 3px;
    transition: width 0.4s;
}

.lead-form-progress-fill.filled {
    width: 100%;
}

/* Steps */
.lead-form-step {
    display: none;
}

.lead-form-step.active {
    display: block;
    animation: leadFadeIn 0.35s ease;
}

.lead-form-step.slide-right {
    animation: leadSlideRight 0.35s ease;
}

.lead-form-step.slide-left {
    animation: leadSlideLeft 0.35s ease;
}

@keyframes leadFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes leadSlideRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes leadSlideLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.lead-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    text-align: center;
}

/* Step 1 - Service cards */
.lead-form-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.lead-form-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1.25rem 1rem;
    background: var(--color-background);
    border: 2px solid var(--color-border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.lead-form-service-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(14, 124, 97, 0.1);
}

.lead-form-service-card.selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(14, 124, 97, 0.06), rgba(14, 124, 97, 0.02));
}

.lead-form-service-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.lead-form-service-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.lead-form-service-desc {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* Fields */
.lead-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.375rem;
}

.lead-form-field input[type="text"],
.lead-form-field input[type="email"],
.lead-form-field input[type="tel"],
.lead-form-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-surface);
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.lead-form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6577' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.lead-form-field input[type="text"]:focus,
.lead-form-field input[type="email"]:focus,
.lead-form-field input[type="tel"]:focus,
.lead-form-field select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.lead-form-field input.error,
.lead-form-field select.error {
    border-color: var(--color-error);
}

.lead-form-checkbox input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: auto;
}

/* Checkbox */
.lead-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-weight: 400;
    cursor: pointer;
}

.lead-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.lead-form-checkbox label.error span {
    color: var(--color-error);
}

/* Nav buttons */
.lead-form-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lead-form-nav .btn {
    flex: 1;
}

.lead-form-btn-submit {
    flex: 2 !important;
}

/* Success */
.lead-form-success {
    text-align: center;
    padding: 2rem 0;
}

.lead-form-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #0B9E78);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.lead-form-success-text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 480px) {
    .lead-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .lead-form-services {
        grid-template-columns: 1fr;
    }

    .lead-form-progress-bar {
        width: 40px;
    }

    .lead-form-nav {
        flex-direction: column-reverse;
    }

    .lead-form-btn-submit {
        flex: 1 !important;
    }
}

/* ============================================================
   EXPERT CARDS
   ============================================================ */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.expert-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.expert-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.expert-card-header {
    padding: 1.25rem 1.25rem 0.875rem;
    border-bottom: 1px solid var(--color-border);
}

.expert-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.expert-card-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.375rem;
}

.expert-card-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    background: rgba(14, 124, 97, 0.08);
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
}

.expert-card-type--secondary {
    color: var(--color-text-light);
    background: var(--color-background);
}

.expert-card-body {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.expert-card-info {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.expert-card-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--color-primary);
    opacity: 0.7;
}

/* Star icon filled */
.expert-card-info svg[fill="currentColor"] {
    color: #F59E0B;
    opacity: 1;
}

.expert-card-phone {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.expert-card-website {
    color: var(--color-text-light);
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: inline-block;
    vertical-align: bottom;
}

.expert-card-website:hover {
    color: var(--color-primary);
}

.expert-card-phone:hover {
    text-decoration: underline;
    color: var(--color-primary-hover);
}

.expert-card-opening {
    font-weight: 600;
    color: var(--color-text-light);
    margin-right: 0.25rem;
}

.expert-card-opening--open {
    color: var(--color-success);
}


@media (max-width: 1024px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .experts-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--color-secondary), #F09040);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(232, 113, 43, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 90;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: sticky-cta-pulse 3s ease-in-out infinite;
}

.sticky-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(232, 113, 43, 0.45), 0 4px 12px rgba(0, 0, 0, 0.12);
    color: #fff;
}

.sticky-cta-icon {
    font-size: 1.125rem;
    line-height: 1;
}

@keyframes sticky-cta-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(232, 113, 43, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 6px 32px rgba(232, 113, 43, 0.5), 0 2px 8px rgba(0, 0, 0, 0.1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .bento-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .trust-bar {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 1.25rem;
        right: 1.25rem;
        left: 1.25rem;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 14px;
    }

    .site-logo {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bento-grid-2,
    .bento-grid-3 {
        grid-template-columns: 1fr;
    }

    .bento-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .trust-bar {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    /* Mobile nav */
    .site-nav,
    .btn-header-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .site-header.menu-open .site-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 4.25rem;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .site-header.menu-open .btn-header-mobile {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
        color: #fff;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.625rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .bento-grid-4 {
        grid-template-columns: 1fr;
    }

    .region-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }
}
