:root {
    --ah-black: #090909;
    --ah-dark: #141414;
    --ah-yellow: #ffd21f;
    --ah-red: #e7352c;
    --ah-white: #ffffff;
    --ah-muted: #666666;
    --ah-line: rgba(0, 0, 0, 0.08);
    --ah-card: #ffffff;
    --ah-radius: 24px;
    --ah-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.ah-fleet,
.ah-fleet * {
    box-sizing: border-box;
}

.ah-fleet {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ah-black);
    background: #f7f7f3;
    overflow: hidden;
}

.ah-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ah-hero {
    position: relative;
    padding: 96px 0 70px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 210, 31, 0.28), transparent 34%),
        linear-gradient(135deg, #0b0b0b 0%, #202020 54%, #ffcf1a 54.2%, #ffd21f 100%);
    color: var(--ah-white);
}

.ah-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -120px 35%;
    height: 260px;
    background: rgba(231, 53, 44, 0.14);
    transform: rotate(-4deg);
    border-radius: 50%;
    filter: blur(8px);
}

.ah-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.ah-kicker,
.ah-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ah-yellow);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 12px;
}

.ah-kicker::before,
.ah-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 4px;
    background: var(--ah-red);
    border-radius: 99px;
}

.ah-hero h1,
.ah-section h2 {
    margin: 16px 0;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.ah-hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 6vw, 82px);
}

.ah-hero-subtitle {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
    margin: 0 0 30px;
}

.ah-hero-actions,
.ah-section .ah-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.ah-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.ah-btn-primary {
    background: var(--ah-yellow);
    color: var(--ah-black) !important;
    box-shadow: 0 12px 24px rgba(255, 210, 31, 0.22);
}

.ah-btn-primary:hover {
    background: #ffe066;
}

.ah-btn-outline {
    color: var(--ah-white) !important;
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
}

.ah-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 670px;
    margin-top: 38px;
}

.ah-proof-row div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.ah-proof-row strong,
.ah-proof-row span {
    display: block;
}

.ah-proof-row strong {
    font-size: 24px;
}

.ah-proof-row span {
    margin-top: 3px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.ah-hero-card {
    border-radius: 34px;
    padding: 18px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 35px 95px rgba(0,0,0,0.30);
    backdrop-filter: blur(16px);
}

.ah-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 8px 16px;
}

.ah-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
}

.ah-card-title {
    margin-left: 8px;
    color: rgba(255,255,255,0.78);
    font-weight: 700;
}

.ah-dashboard {
    padding: 26px;
    border-radius: 24px;
    background: #111;
}

.ah-dash-main {
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--ah-yellow), #fff4a0);
    color: #111;
    margin-bottom: 16px;
}

.ah-dash-main span,
.ah-dash-main strong {
    display: block;
}

.ah-dash-main span {
    font-weight: 800;
    color: rgba(0,0,0,0.62);
}

.ah-dash-main strong {
    font-size: 58px;
    letter-spacing: -0.06em;
    margin: 3px 0 12px;
}

.ah-meter {
    height: 9px;
    border-radius: 999px;
    background: rgba(0,0,0,0.15);
    overflow: hidden;
}

.ah-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #111;
}

.ah-dash-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 2px;
    color: rgba(255,255,255,0.78);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.ah-dash-row strong {
    color: #fff;
}

.ah-alert-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(231,53,44,0.16);
    border: 1px solid rgba(231,53,44,0.28);
}

.ah-alert-card p {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.74);
}

.ah-section {
    padding: 86px 0;
}

.ah-logo-strip {
    padding: 28px 0;
    background: var(--ah-yellow);
}

.ah-logo-strip p {
    margin: 0;
    color: #111;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
}

.ah-section-heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.ah-section-heading.compact {
    margin-bottom: 32px;
}

.ah-section h2 {
    font-size: clamp(34px, 4vw, 58px);
}

.ah-section-heading p,
.ah-split p,
.ah-form-grid p {
    color: var(--ah-muted);
    font-size: 18px;
    line-height: 1.7;
}

.ah-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ah-service-card,
.ah-step,
.ah-pricing-card,
.ah-form,
.ah-system-card {
    border: 1px solid var(--ah-line);
    background: var(--ah-card);
    border-radius: var(--ah-radius);
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.ah-service-card {
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ah-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ah-shadow);
}

.ah-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff3ba;
    margin-bottom: 18px;
    font-size: 24px;
}

.ah-service-card h3,
.ah-step h3 {
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.ah-service-card p,
.ah-step p {
    margin: 0;
    color: var(--ah-muted);
    line-height: 1.62;
}

.ah-system-section {
    background: #ffffff;
}

.ah-split {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 54px;
    align-items: center;
}

.ah-split.reverse {
    grid-template-columns: 0.9fr 1fr;
}

.ah-check-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.ah-check-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 16px;
    border-radius: 16px;
    background: #f5f5f0;
    font-weight: 750;
}

.ah-check-list span {
    color: var(--ah-red);
    font-weight: 1000;
}

.ah-system-card {
    padding: 26px;
    background: #111;
    color: #fff;
}

.ah-system-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.ah-system-row.active {
    background: rgba(255,210,31,0.16);
    border-color: rgba(255,210,31,0.34);
}

.ah-system-row.warning {
    background: rgba(231,53,44,0.17);
    border-color: rgba(231,53,44,0.34);
}

.ah-system-row strong,
.ah-system-row span,
.ah-system-row em {
    display: block;
}

.ah-system-row span {
    margin-top: 4px;
    color: rgba(255,255,255,0.62);
}

.ah-system-row em {
    font-style: normal;
    color: #111;
    background: var(--ah-yellow);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
}

.ah-mini-chart {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 150px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    margin: 18px 0;
}

.ah-mini-chart span {
    display: block;
    flex: 1;
    background: linear-gradient(180deg, var(--ah-yellow), var(--ah-red));
    border-radius: 10px 10px 0 0;
}

.ah-system-note {
    color: rgba(255,255,255,0.70) !important;
    margin: 0;
    font-size: 15px !important;
}

.ah-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.ah-step {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.ah-step::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--ah-yellow);
}

.ah-step span {
    display: inline-flex;
    color: var(--ah-red);
    font-weight: 1000;
    margin-bottom: 16px;
}

.ah-dark-section {
    background: #111;
    color: #fff;
}

.ah-dark-section p {
    color: rgba(255,255,255,0.72);
}

.ah-pricing-card {
    padding: 30px;
    color: #111;
}

.ah-pricing-card h3 {
    margin: 0 0 20px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.ah-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.ah-pricing-card li {
    padding: 18px;
    border-radius: 18px;
    background: #f7f7f3;
    border: 1px solid var(--ah-line);
}

.ah-pricing-card strong,
.ah-pricing-card span {
    display: block;
}

.ah-pricing-card span {
    margin-top: 6px;
    color: var(--ah-muted);
}

.ah-branches {
    background: #fff;
}

.ah-pill-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.ah-pill-grid span {
    display: inline-flex;
    padding: 13px 18px;
    border-radius: 999px;
    background: #f3f3ed;
    border: 1px solid var(--ah-line);
    font-weight: 850;
}

.ah-form-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(255,210,31,0.16), transparent 32%),
        #f7f7f3;
}

.ah-form-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 44px;
    align-items: start;
}

.ah-contact-box {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    padding: 22px;
    border-radius: 20px;
    background: #111;
    color: #fff;
}

.ah-contact-box a {
    color: var(--ah-yellow) !important;
    text-decoration: none !important;
    font-weight: 800;
}

.ah-form {
    padding: 30px;
}

.ah-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 850;
}

.ah-form input,
.ah-form select,
.ah-form textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 14px 15px;
    background: #fff;
    font: inherit;
    color: #111;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ah-form input:focus,
.ah-form select:focus,
.ah-form textarea:focus {
    border-color: var(--ah-yellow);
    box-shadow: 0 0 0 4px rgba(255,210,31,0.18);
}

.ah-form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ah-form-submit {
    width: 100%;
    border: none;
}

.ah-form-note {
    margin: 14px 0 0;
    font-size: 13px !important;
    color: var(--ah-muted) !important;
    text-align: center;
}

.ah-form-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 800;
}

.ah-form-alert.success {
    background: #e8f7e7;
    color: #176b20;
}

.ah-form-alert.error {
    background: #ffe7e5;
    color: #a81812;
}

@media (max-width: 980px) {
    .ah-hero-grid,
    .ah-split,
    .ah-split.reverse,
    .ah-form-grid {
        grid-template-columns: 1fr;
    }

    .ah-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ah-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ah-container {
        width: min(100% - 24px, 1180px);
    }

    .ah-hero {
        padding: 66px 0 52px;
        background: linear-gradient(155deg, #0b0b0b 0%, #1d1d1d 68%, #ffd21f 68.2%, #ffd21f 100%);
    }

    .ah-hero h1 {
        font-size: 42px;
    }

    .ah-proof-row,
    .ah-service-grid,
    .ah-steps,
    .ah-form-two {
        grid-template-columns: 1fr;
    }

    .ah-section {
        padding: 62px 0;
    }

    .ah-dashboard,
    .ah-form {
        padding: 20px;
    }
}


/* -------------------------------------------------------
   WordPress theme override fixes / readability patch v1.0.1
   Some themes force heading/link colours globally. These rules
   keep Autohaus Fleet page text readable inside dark sections.
------------------------------------------------------- */
.ah-fleet h1,
.ah-fleet h2,
.ah-fleet h3,
.ah-fleet h4,
.ah-fleet h5,
.ah-fleet h6 {
    color: inherit !important;
}

.ah-fleet .ah-dark-section,
.ah-fleet .ah-dark-section h2,
.ah-fleet .ah-dark-section h3,
.ah-fleet .ah-dark-section strong,
.ah-fleet .ah-dark-section li,
.ah-fleet .ah-system-card,
.ah-fleet .ah-system-card strong,
.ah-fleet .ah-dashboard,
.ah-fleet .ah-dashboard strong {
    color: #ffffff !important;
}

.ah-fleet .ah-dark-section p,
.ah-fleet .ah-dark-section span:not(.ah-eyebrow),
.ah-fleet .ah-system-note,
.ah-fleet .ah-system-row span,
.ah-fleet .ah-dash-row span,
.ah-fleet .ah-alert-card p {
    color: rgba(255,255,255,0.82) !important;
}

.ah-fleet .ah-pricing-card,
.ah-fleet .ah-pricing-card h3,
.ah-fleet .ah-pricing-card strong,
.ah-fleet .ah-pricing-card li {
    color: #111111 !important;
}

.ah-fleet .ah-pricing-card span {
    color: #4b5563 !important;
}

.ah-fleet .ah-eyebrow,
.ah-fleet .ah-kicker {
    color: #ffd21f !important;
}

.ah-fleet .ah-btn-primary,
.ah-fleet .ah-btn-primary:visited,
.ah-fleet .ah-system-row em {
    color: #111111 !important;
}

.ah-fleet .ah-btn-outline,
.ah-fleet .ah-btn-outline:visited {
    color: #ffffff !important;
}

.ah-fleet .ah-dark-section .ah-split > div:last-child {
    padding: 14px 0;
}

.ah-fleet .ah-dark-section h2 {
    margin-bottom: 22px;
}

/* Form anti-spam honeypot: keep hidden from real users */
.ah-fleet .ah-hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}
