/* All-on-4 — section 1: hero (same rules as Zygoma/Angstpatienten/Vollnarkose, no eyebrow, uppercase title) */

/* ==========================================================================
   Fixed phone button 
   ========================================================================== */

.a4-allon4-phone-btn {
    display: inline-flex;
    align-items: center;
    position: fixed;
    top: calc(90px + 40px); 
    right: 0;
    z-index: 199;
	line-height: 1;
    padding: 0 20px;
}

.a4-allon4-phone-btn .a4-button__icon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.a4-allon4-phone-btn .a4-button__icon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.a4-allon4-phone-btn .a4-button__icon img {
	position: relative;
	top: 3px;
    display: block;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* uk-button-danger */
.a4-button--danger {
    display: inline-block;
    box-sizing: border-box;
    padding: 0 20px;
    border: 5px solid transparent;
    border-radius: 10px;
    background-color: #e74922;
    color: #fff;
    font-family: var(--a4-font-body);
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    transition: .1s ease-in-out;
}

.a4-button--danger:hover {
    background-color: #cc3713;
    border-color: #cc3713;
    color: #fff;
    text-decoration: none;
}

.a4-allon4-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16 / 7;
    min-height: 0;
    max-height: 840px;
    height: auto;
}

@media (min-width: 1400px) {
    .a4-allon4-hero {
        aspect-ratio: auto;
        min-height: 600px;
    }
}

.a4-allon4-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.a4-allon4-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 959px) {
    .a4-allon4-hero {
        aspect-ratio: auto;
        max-height: none;
    }

    .a4-allon4-hero__media img {
        object-position: center center;
    }
}

.a4-allon4-hero__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.a4-allon4-hero__content {
    max-width: 450px;
    margin: 0;
    text-align: left;
}

/* uk-heading-small, uppercase (no eyebrow on this page) */
.a4-allon4-hero__title {
    margin: 0;
    font-family: var(--a4-font-body);
    font-size: 38.4px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #2d2e33;
}

@media (min-width: 960px) {
    .a4-allon4-hero__title {
        font-size: 48px;
    }

    .a4-allon4-hero {
        aspect-ratio: auto;
        height: 100vh;
        min-height: 100vh;
        max-height: none;
    }
}

.a4-allon4-hero__text {
    margin-top: 20px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #6c6d74;
}

.a4-allon4-hero__text p {
    margin: 0 0 10px;
}

.a4-allon4-hero__text p:last-child {
    margin-bottom: 0;
}

.a4-allon4-hero__cta {
    margin-top: 20px;
}

@media (max-width: 959px) {
    .a4-allon4-hero {
        min-height: 480px;
        max-height: none;
    }
}

@media (max-width: 639px) {
    .a4-allon4-hero {
        display: block;
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
        max-height: none;
		background: #fff;
    }

    .a4-allon4-hero__media {
        position: static;
        aspect-ratio: 4 / 3;
		width: 100%;
		max-height: 420px;
    	overflow: hidden;
    }
	
	.a4-allon4-hero__media img {
		width: 100%;
    	height: 100%;
		object-position: right top;
		transform: scale(1.3);
		transform-origin: right top;
	}

    .a4-allon4-hero__overlay {
        position: static;
        background: #fff;
        padding: 20px;
    }

    .a4-allon4-hero__overlay .a4-container {
        padding-left: 0;
        padding-right: 0;
    }

    .a4-allon4-hero__content {
        max-width: none;
    }
}

@media (max-width: 400px) {
    .a4-allon4-hero__title {
        font-size: 31.4px;
    }

    .a4-allon4-hero__cta .a4-button--danger {
        font-size: 16px;
    }
}

/* Fade + slide DOWN (top to bottom) — section-specific, other pages use fade-up */
[data-a4-fade-down] {
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

[data-a4-fade-down].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Section 3: Was uns auszeichnet
   ========================================================================== */

.a4-allon4-features {
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 140px;
    background: #fff;
}

@media (min-width: 960px) {
    .a4-allon4-features {
        padding-top: 180px;
        padding-bottom: 180px;
    }
}

.a4-allon4-features .a4-container {
    position: relative;
    z-index: 1;
}

.a4-allon4-features__grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 960px) {
    .a4-allon4-features__grid {
        grid-template-columns: 60% 40%;
        align-items: center;
        gap: 40px;
    }
}

/* uk-h6 uk-text-primary */
.a4-allon4-features__eyebrow {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--a4-color-heading);
}

/* uk-h1 uk-text-danger */
.a4-allon4-features__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--a4-color-primary);
    text-transform: uppercase;
}

@media (min-width: 960px) {
    .a4-allon4-features__title {
        font-size: 56px;
    }
}

/* uk-h3 uk-text-emphasis */
.a4-allon4-features__subtitle {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--a4-color-heading);
    text-transform: uppercase;
}

@media (min-width: 375px) {
    .a4-allon4-features__subtitle {
        font-size: 28px;
    }
}

/* uk-text-lead */
.a4-allon4-features__text {
    margin: 0 0 40px;
    font-family: var(--a4-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--a4-color-heading);
}

.a4-allon4-features__tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.a4-allon4-features__tile {
    flex: 1 1 100%;
}

@media (min-width: 640px) {
    .a4-allon4-features__tile {
        flex: 1 1 calc(50% - 20px);
    }
}

.a4-allon4-features__tile-icon {
    display: block;
    width: 60px;
    height: auto;
    margin-bottom: 16px;
}

/* uk-h5 */
.a4-allon4-features__tile-title {
    margin: 0 0 10px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--a4-color-heading);
    text-transform: none;
}

.a4-allon4-features__tile-text {
    margin: 0;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-features__cta .a4-button--primary {
    padding: 0 20px;
    line-height: 24px;
}

/* Base with-icon rule — not yet defined on this template */
.a4-button--with-icon {
    display: inline-flex;
    align-items: center;
}

.a4-button--with-icon .a4-button__icon {
    display: inline-flex;
    margin-right: 10px;
}

/* Right-side decorative photo — truly absolute against the SECTION (not the
   grid column), bleeds past the right edge and gets cropped by the section's
   overflow:hidden. Hidden below 960px (client: uk-visible@m). */
.a4-allon4-features__media {
    display: none;
}

/* @media (min-width: 960px) {
    .a4-allon4-features__media {
        display: block;
        position: absolute;
        top: 50%;
        right: -48%;
        transform: translateY(-58%);
        z-index: 0;
    }
} */

@media (min-width: 960px) {
    .a4-allon4-features__media {
        display: block;
        position: absolute;
        top: 50%;
        right: -28vw;
        transform: translateY(-58%);
        z-index: 0;
    }
}

.a4-allon4-features__media-deco {
    position: absolute;
    top: -60px;
    left: -60px;
    z-index: 0;
    width: min(30vw, 420px);
    pointer-events: none;
    line-height: 0;
	display: none;
}

.a4-allon4-features__media-deco img {
    display: block;
    width: 100%;
    height: auto;
}

.a4-allon4-features__media-photo {
    position: relative;
    z-index: 1;
    display: block;
    width: min(42vw, 700px);
    height: auto;
}

/* ==========================================================================
   Section 4: Unsere Patienten sprechen
   ========================================================================== */

.a4-allon4-reviews {
    position: relative;
/*     overflow: hidden; */
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
    text-align: center;
}

@media (min-width: 960px) {
    .a4-allon4-reviews {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

.a4-allon4-reviews .a4-container {
    position: relative;
    z-index: 1;
}

/* Decorative triangles — same technique as Vollnarkose "Unsere Mission",
   visible only from 1800px up (client: uk-visible@xl), sit BELOW the video (z-index: 0) */
.a4-allon4-reviews__deco {
    position: absolute;
    z-index: 0;
    display: none;
    pointer-events: none;
    line-height: 0;
}

@media (min-width: 1800px) {
    .a4-allon4-reviews__deco {
        display: block;
    }
}

.a4-allon4-reviews__deco img {
    display: block;
    width: 100%;
    height: 100%;
}

.a4-allon4-reviews__deco--grau {
    left: 14vh;
    top: 35vh;
    width: 500px;
    height: 750px;
}

.a4-allon4-reviews__deco--orange {
	left: 65vw;
    top: 28vh;
    width: 450px;
    height: 675px;
}

/* uk-heading-small */
.a4-allon4-reviews__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 38.4px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
    color: var(--a4-color-heading);
}

@media (min-width: 960px) {
    .a4-allon4-reviews__title {
        font-size: 48px;
    }
}

@media (max-width: 375px) {
    .a4-allon4-reviews__title {
        font-size: 31.4px;
    }
}

/* uk-text-lead */
.a4-allon4-reviews__subtitle {
    max-width: 780px;
    margin: 0 auto 40px;
    font-family: var(--a4-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--a4-color-text);
}
.a4-allon4-reviews__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.a4-allon4-reviews__col {
    width: 100%;
}

@media (min-width: 960px) {
    .a4-allon4-reviews__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.a4-allon4-reviews__col {
    position: relative;
    z-index: 1;
}

@media (min-width: 960px) {
    .a4-allon4-reviews__col {
        width: 430px;
    }
}

/* Drop shadow under each video (client: uk-box-shadow-bottom) */
.a4-allon4-reviews__video-shadow {
    position: relative;
}

@media (min-width: 960px) {
    .a4-allon4-reviews__video-shadow {
        max-width: 430px;
        margin: 0 auto;
    }
}

@supports (filter: blur(0)) {
    .a4-allon4-reviews__video-shadow::after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        z-index: -1;
        height: 30px;
        border-radius: 100%;
        background: #444;
        filter: blur(20px);
        will-change: filter;
    }
}

.a4-allon4-reviews__video {
    position: relative;
    aspect-ratio: 2 / 1;
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 960px) {
    .a4-allon4-reviews__video {
        max-width: 430px;
        margin: 0 auto;
    }
}

.a4-allon4-reviews__video iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 959px) {
	.a4-allon4-reviews__grid {
		gap: 20px;
	}
}

/* ==========================================================================
   Section 5: Feste Zähn in zwei Tagen
   ========================================================================== */

.a4-allon4-intro {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--a4-color-bg-muted);
}

.a4-allon4-intro .a4-container {
    position: relative;
    z-index: 1;
}

@media (min-width: 960px) {
    .a4-allon4-intro {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

.a4-allon4-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-intro__grid {
        grid-template-columns: 1.7fr 1fr;
        gap: 80px;
    }
}

/* plain <h2> — same as section 4's "uk-h1" pattern: orange, uppercase */
.a4-allon4-intro__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--a4-color-primary);
}

@media (min-width: 960px) {
    .a4-allon4-intro__title {
        font-size: 50px;
    }
}

@media (max-width: 959px) {
    .a4-allon4-intro__title {
        font-size: 32px;
    }
}

@media (max-width: 375px) {
    .a4-allon4-intro__title {
        font-size: 28px;
    }
}

/* uk-text-lead */
.a4-allon4-intro__lead {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--a4-color-text);
}

.a4-allon4-intro__lead p {
    margin: 0 0 20px;
}

.a4-allon4-intro__lead p:last-child {
    margin-bottom: 0;
}

.a4-allon4-intro__text {
    margin: 0 0 40px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-intro__text p {
    margin: 0 0 20px;
}

.a4-allon4-intro__text p:last-child {
    margin-bottom: 0;
}

.a4-allon4-intro__cta .a4-button--primary {
    padding: 0 20px;
    line-height: 24px;
}

/* uk-h5 uk-text-muted */
.a4-allon4-intro__aside-title {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--a4-color-muted);
}

.a4-allon4-intro__video {
    position: relative;
    aspect-ratio: 889 / 500;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.a4-allon4-intro__video:last-child {
    margin-bottom: 0;
}

.a4-allon4-intro__video iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Section 6: Ihre sichere Wahl / Ihr Ärzteteam
   ========================================================================== */

.a4-allon4-team {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

@media (min-width: 960px) {
    .a4-allon4-team {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

.a4-allon4-team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-team__grid {
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }
}

/* plain <h2> */
.a4-allon4-team__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--a4-color-primary);
}

@media (min-width: 960px) {
    .a4-allon4-team__title {
        font-size: 50px;
    }
}

@media (max-width: 959px) {
    .a4-allon4-team__title {
        font-size: 32px;
    }
}

@media (max-width: 375px) {
    .a4-allon4-team__title {
        font-size: 28px;
    }
}

.a4-allon4-team__text {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-team__text p {
    margin: 0 0 20px;
}

.a4-allon4-team__text p:last-child {
    margin-bottom: 0;
}

/* plain <h3>, same visual treatment as the eyebrow before the button */
.a4-allon4-team__subtitle {
    margin: 40px 0;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

.a4-allon4-team__cta .a4-button--primary {
    padding: 0 20px;
    line-height: 24px;
}

/* uk-h3 uk-text-muted */
.a4-allon4-team__aside-title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

@media (min-width: 960px) {
    .a4-allon4-team__aside-title {
        font-size: 30px;
    }
}

.a4-allon4-team__slider {
    position: relative;
}

.a4-allon4-team__track {
    position: relative;
    z-index: 1;
}

.a4-allon4-team__slide {
    display: none;
    text-align: center;
}

.a4-allon4-team__slide.is-active {
    display: block;
}

.a4-allon4-team__photo {
    display: block;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 4px;
    object-fit: cover;
}

.a4-allon4-team__caption {
    font-family: var(--a4-font-body);
    font-size: 18px;
    line-height: 1.4;
    color: var(--a4-color-text);
	padding: 40px;
}

.a4-allon4-team__name {
    display: block;
    margin-bottom: 4px;
    color: var(--a4-color-text);
}

/* Arrows — dark, hidden by default, fade in on slider hover, full opacity on arrow hover */
.a4-allon4-team__arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.a4-allon4-team__slider:hover .a4-allon4-team__arrow {
    opacity: 0.6;
}

.a4-allon4-team__arrow:hover {
    opacity: 1;
}

.a4-allon4-team__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: solid var(--a4-color-heading);
    border-width: 0 1.5px 1.5px 0;
}

.a4-allon4-team__arrow--prev {
    left: 12%;
}

.a4-allon4-team__arrow--prev::before {
    transform: translate(-20%, -50%) rotate(135deg);
}

.a4-allon4-team__arrow--next {
    right: 12%;
}

.a4-allon4-team__arrow--next::before {
    transform: translate(-80%, -50%) rotate(-45deg);
}

.a4-allon4-team__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
	margin: 0;
    list-style: none;
}

.a4-allon4-team__dots button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--a4-color-border);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.a4-allon4-team__dots button:hover {
    background: var(--a4-color-heading);
}

.a4-allon4-team__dots li.is-active button {
    background: var(--a4-color-heading);
}

@media (min-width: 960px) {
    .a4-allon4-team__slider {
        height: 520px;
    }

    .a4-allon4-team__slide.is-active {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .a4-allon4-team__caption {
        overflow: hidden;
    }
}

@media (max-width: 959px) {
    .a4-allon4-team__slider {
        min-height: 520px;
    }

    .a4-allon4-team__slide.is-active {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .a4-allon4-team__caption {
        overflow: hidden;
    }
}

@media (max-width: 639px) {
	.a4-allon4-team__arrow--prev {
		left: 5%;
	}

	.a4-allon4-team__arrow--next {
		right: 5%;
	}
}

/* ==========================================================================
   Section 7: Ablauf einer All-on-4-Behandlung
   ========================================================================== */

.a4-allon4-process {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--a4-color-bg-muted);
}

/* Bare <h3> — same muted uppercase default reused across the site */
.a4-allon4-process__title {
	max-width: 600px;
}

.a4-allon4-process__title,
.a4-allon4-process__col-title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

@media (max-width: 375px) {
    .a4-allon4-process__title,
    .a4-allon4-process__col-title {
        font-size: 23px;
    }
}

.a4-allon4-process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-process__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.a4-allon4-process__image {
    display: block;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 580 / 495;
    object-fit: contain;
    margin-bottom: 20px;
}

.a4-allon4-process__caption {
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    color: var(--a4-color-text);
}

.a4-allon4-process__caption p {
    margin: 0;
}

.a4-allon4-process__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-process__cols {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* uk-text-lead */
.a4-allon4-process__col-lead {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--a4-color-heading);
}

.a4-allon4-process__col-text {
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-process__col-text p {
    margin: 0 0 20px;
}

.a4-allon4-process__col-text p:last-child {
    margin-bottom: 0;
}

.a4-allon4-process__cta .a4-button--primary {
	margin-top: 40px;
    padding: 0 20px;
    line-height: 24px;
}

@media (max-width: 959px) {
	.a4-allon4-process__grid {
		gap: 20px;
		margin-bottom: 20px;
	}
	
	.a4-allon4-process__cols {
		gap: 20px;
	}
}

/* ==========================================================================
   Section 2: Auf Expertise von Konzeptdental
   ========================================================================== */

.a4-allon4-trust {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

.a4-allon4-trust__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

.a4-allon4-trust__text {
    margin: 0 0 40px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-trust__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: space-between;
    gap: 40px;
}

.a4-allon4-trust__logo {
    display: block;
    height: auto;
    max-width: 250px;
}

.a4-allon4-trust__widget {
    flex: 0 0 auto;
}

@media (max-width: 959px) {
	.a4-allon4-trust__row {
		gap: 20px;
	}
}

@media (max-width: 375px) {
    .a4-allon4-trust__title {
        font-size: 23px;
    }
}

/* ==========================================================================
   Section 9: Dank der kompetenten All-on-4-Behandlung
   ========================================================================== */

.a4-allon4-cta9 {
    padding-top: 40px;
    padding-bottom: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right 45%;
}

@media (min-width: 960px) {
    .a4-allon4-cta9 {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

/* Bare heading — same muted uppercase pattern reused across the site */
.a4-allon4-cta9__title {
    max-width: 780px;
    margin: 0 0 40px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}



.a4-allon4-cta9__mobile-image {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 40px;
    border-radius: 4px;
}

@media (min-width: 960px) {
    .a4-allon4-cta9__mobile-image {
        display: none;
    }
}

.a4-allon4-cta9__cols {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 960px) {
    .a4-allon4-cta9__cols {
        flex-direction: row;
        gap: 60px;
    }
}

.a4-allon4-cta9__col {
    width: 100%;
}

@media (min-width: 960px) {
    .a4-allon4-cta9__col {
        max-width: 210px;
    }
}

.a4-allon4-cta9__col-title {
    margin: 0 0 10px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--a4-color-heading);
}

.a4-allon4-cta9__col-text {
    margin: 0;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

@media (max-width: 959px) {
    .a4-allon4-cta9 {
        background-image: none !important;
        background-color: #E8E8E8;
    }
}

@media (max-width: 375px) {
    .a4-allon4-cta9__title {
        font-size: 23px;
    }
}

/* ==========================================================================
   Section 10: Vereinbaren Sie einen unverbindlichen Beratungstermin
   ========================================================================== */

.a4-allon4-ctastrip {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--a4-color-bg-muted);
}

.a4-allon4-ctastrip__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 960px) {
    .a4-allon4-ctastrip__grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
}

/* bare <h5> */
.a4-allon4-ctastrip__text {
    margin: 0;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--a4-color-heading);
}

.a4-allon4-ctastrip__cta {
    flex: 0 0 auto;
}

.a4-allon4-ctastrip__cta .a4-button--primary {
    padding: 0 20px;
    line-height: 24px;
}

/* ==========================================================================
   Section 11: Ablauf einer All-on-4 Behandlung
   ========================================================================== */

.a4-allon4-steps {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #F7F7F7;
}

@media (min-width: 960px) {
    .a4-allon4-steps {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

.a4-allon4-steps__deco {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 869px;
    pointer-events: none;
    line-height: 0;
}

.a4-allon4-steps__deco img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.a4-allon4-steps .a4-container {
    position: relative;
    z-index: 1;
}

/* Bare heading — orange uppercase */
.a4-allon4-steps__title {
    margin: 0 0 40px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-primary);
    text-align: center;
}

@media (min-width: 960px) {
    .a4-allon4-steps__title {
        font-size: 50px;
    }
}

@media (max-width: 959px) {
    .a4-allon4-steps__title {
        font-size: 32px;
    }
}

@media (max-width: 375px) {
    .a4-allon4-steps__title {
        font-size: 28px;
    }
}

.a4-allon4-steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
	padding-bottom: 70px;
}

@media (min-width: 640px) {
    .a4-allon4-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .a4-allon4-steps__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

[data-a4-parallax] {
    will-change: transform;
}

.a4-allon4-steps__item {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--a4-color-border);
}

.a4-allon4-steps__icon {
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.a4-allon4-steps__item-title {
    margin: 0 0 16px;
    font-family: var(--a4-font-body);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-heading);
}

.a4-allon4-steps__item-text {
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

@media (max-width: 959px) {
    .a4-allon4-steps__item {
        padding: 20px;
        max-width: 450px;
    }

    .a4-allon4-steps__grid {
        gap: 20px;
    }
}

@media (max-width: 639px) {
    .a4-allon4-steps__item {
        max-width: 100%;
    }
}

/* ==========================================================================
   Section 12: Vorher Nachher Bilder am Tag der OP
   ========================================================================== */

.a4-allon4-before-after {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

/* Bare heading */
.a4-allon4-before-after__title {
    margin: 0 0 40px;
    font-family: var(--a4-font-heading);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-heading);
}

@media (min-width: 960px) {
    .a4-allon4-before-after__title {
        font-size: 40px;
    }
}

@media (max-width: 375px) {
    .a4-allon4-before-after__title {
        font-size: 28px;
    }
}

.a4-allon4-before-after__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-before-after__grid {
        grid-template-columns: 580px 1fr;
        gap: 60px;
    }
}

.a4-allon4-before-after__media {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1 / 1;
	margin-bottom: 40px;
}

.a4-allon4-before-after__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.a4-allon4-before-after__image.is-active {
    opacity: 1;
    position: relative;
}

.a4-allon4-before-after__aside-title {
    margin: 0 0 10px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--a4-color-heading);
}

.a4-allon4-before-after__aside-text {
    margin: 0 0 30px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-before-after__instagram {
    display: flex;
    align-items: self-start;
    gap: 12px;
}

.a4-allon4-before-after__instagram-icon {
    display: block;
    line-height: 0;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.a4-allon4-before-after__instagram-icon:hover {
    opacity: 0.6;
}

.a4-allon4-before-after__instagram-icon img {
    display: block;
    width: 60px;
    height: 60px;
	filter: brightness(0) saturate(100%) invert(46%) sepia(4%) saturate(626%) hue-rotate(202deg) brightness(91%) contrast(87%);
}

.a4-allon4-before-after__instagram-link {
    font-family: var(--a4-font-body);
    font-size: 18px;
    color: var(--a4-color-heading);
    text-decoration: none;
	margin-top: 5px;
}

.a4-allon4-before-after__instagram-link:hover {
	text-decoration: underline;
}

.a4-allon4-before-after__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.a4-allon4-before-after__col-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
	width: 100%;
}

.a4-allon4-before-after__media {
    width: 100%;
}

/* @media (min-width: 960px) {
    .a4-allon4-before-after__nav {
        max-width: 580px;
    }
} */

.a4-allon4-before-after__nav-btn {
    padding: 7px 14px;
    border: 0;
    background: var(--a4-color-bg-muted);
    color: var(--a4-color-text);
    font-family: var(--a4-font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.a4-allon4-before-after__nav-btn.is-active {
    background: var(--a4-color-primary);
    color: #fff;
}

.a4-allon4-before-after__nav-btn:hover {
    background: #DFDFDF;
	color: var(--a4-color-text);
}

.a4-allon4-before-after__nav-btn:focus {
	color: #fff;
}

.a4-allon4-before-after__nav-btn.is-active:hover {
    background: var(--a4-color-primary);
}

@media (max-width: 959px) {
    .a4-allon4-before-after__image {
        max-width: none;
    }
	
	.a4-allon4-before-after__media {
		margin-bottom: 20px;
	}
}

/* ==========================================================================
   Section 13: Wie viel kostet eine All-on-Four Behandlung
   ========================================================================== */

.a4-allon4-pricing {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

@media (min-width: 960px) {
    .a4-allon4-pricing {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

.a4-allon4-pricing__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-pricing__cols {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* Bare heading */
.a4-allon4-pricing__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

@media (max-width: 375px) {
    .a4-allon4-pricing__title {
        font-size: 23px;
    }
}

.a4-allon4-pricing__lead {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--a4-color-heading);
}

.a4-allon4-pricing__text {
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-pricing__text p {
    margin: 0 0 20px;
}

.a4-allon4-pricing__text p:last-child {
    margin-bottom: 0;
}

.a4-allon4-pricing__text strong {
    color: var(--a4-color-heading);
}

/* "mehr lesen" toggle */
.a4-allon4-pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--a4-font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #666;
    transition: color 0.2s ease;
}

.a4-allon4-pricing__toggle {
    padding-top: 20px;
}

.a4-allon4-pricing__toggle:hover {
    color: #999;
}

.a4-allon4-pricing__toggle-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    font-size: 0;
}

.a4-allon4-pricing__toggle-icon::before,
.a4-allon4-pricing__toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* horizontal bar — always visible, forms the "-" */
.a4-allon4-pricing__toggle-icon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

/* vertical bar — visible only when closed, forms the "+" together with the bar above */
.a4-allon4-pricing__toggle-icon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.a4-allon4-pricing__toggle[aria-expanded="true"] .a4-allon4-pricing__toggle-icon::after,
.a4-allon4-doctors__toggle[aria-expanded="true"] .a4-allon4-pricing__toggle-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

/* Smooth accordion via grid-template-rows trick — animates height without JS measuring */
.a4-allon4-pricing__more {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.a4-allon4-pricing__more.is-open {
    grid-template-rows: 1fr;
}

.a4-allon4-pricing__more-inner {
    overflow: hidden;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-pricing__more-inner p {
    margin: 20px 0 0;
}

.a4-allon4-pricing__text p strong {
	color: var(--a4-color-text);
}

.a4-allon4-pricing__cta .a4-button--primary {
	margin-top: 40px;
    padding: 0 20px;
    line-height: 24px;
}

/* ==========================================================================
   Section 14: Viele gute Gründe die für uns sprechen
   ========================================================================== */

.a4-allon4-reasons {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--a4-color-bg-muted);
}

@media (min-width: 960px) {
    .a4-allon4-reasons {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

/* Bare heading */
.a4-allon4-reasons__title {
    margin: 0 0 40px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

@media (max-width: 375px) {
    .a4-allon4-reasons__title {
        font-size: 23px;
    }
}

.a4-allon4-reasons__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 60px;
}

@media (min-width: 960px) {
    .a4-allon4-reasons__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.a4-allon4-reasons__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.a4-allon4-reasons__item {
    padding: 20px 0;
}

.a4-allon4-reasons__item:first-child {
    padding-top: 0;
}

.a4-allon4-reasons__item-title {
    margin: 0;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--a4-color-heading);
}

.a4-allon4-reasons__item-text {
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

/* ==========================================================================
   Section 15: Schauen Sie sich bei uns um
   ========================================================================== */

.a4-allon4-tour {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

@media (min-width: 960px) {
    .a4-allon4-tour {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}

.a4-allon4-tour__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-tour__grid {
        grid-template-columns: 35fr 65fr;
        gap: 60px;
        align-items: start;
    }
}

/* Bare heading */
.a4-allon4-tour__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

@media (max-width: 375px) {
    .a4-allon4-tour__title {
        font-size: 23px;
    }
}

.a4-allon4-tour__text {
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-tour__text p {
    margin: 0 0 20px;
}

.a4-allon4-tour__text p:last-child {
    margin-bottom: 0;
}

.a4-allon4-tour__slider {
    position: relative;
}

.a4-allon4-tour__track {
    position: relative;
}

.a4-allon4-tour__slide {
    display: none;
}

.a4-allon4-tour__slide.is-active {
    display: block;
}

.a4-allon4-tour__photo {
    display: block;
    width: 100%;
    max-width: 788px;
    aspect-ratio: 788 / 466;
    object-fit: cover;
}

/* Arrows — same technique as Section 6 team slider */
.a4-allon4-tour__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.a4-allon4-tour__slider:hover .a4-allon4-tour__arrow {
    opacity: 0.6;
}

.a4-allon4-tour__arrow:hover {
    opacity: 1;
}

.a4-allon4-tour__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: solid var(--a4-color-heading);
    border-width: 0 1.5px 1.5px 0;
}

.a4-allon4-tour__arrow--prev {
    left: 20px;
}

.a4-allon4-tour__arrow--prev::before {
    transform: translate(-20%, -50%) rotate(135deg);
}

.a4-allon4-tour__arrow--next {
    right: 20px;
}

.a4-allon4-tour__arrow--next::before {
    transform: translate(-80%, -50%) rotate(-45deg);
}

.a4-allon4-tour__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.a4-allon4-tour__dots button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--a4-color-border);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.a4-allon4-tour__dots button:hover {
    background: var(--a4-color-heading);
}

.a4-allon4-tour__dots li.is-active button {
    background: var(--a4-color-heading);
}

@media (max-width: 959px) {
	.a4-allon4-tour__photo {
		max-width: 100%;
	}
}

/* ==========================================================================
   Section 16: Ihr Spezialistenteam
   ========================================================================== */

.a4-allon4-doctors {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--a4-color-bg-muted);
}

/* Bare heading */
.a4-allon4-doctors__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--a4-color-muted);
}

@media (max-width: 375px) {
    .a4-allon4-doctors__title {
        font-size: 23px;
    }
}

.a4-allon4-doctors__lead {
    margin: 0 0 40px;
    font-family: var(--a4-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--a4-color-heading);
}

.a4-allon4-doctors__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 960px) {
    .a4-allon4-doctors__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.a4-allon4-doctors__media {
    position: relative;
    margin-bottom: 20px;
}

.a4-allon4-doctors__deco {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 60%;
    pointer-events: none;
    line-height: 0;
}

.a4-allon4-doctors__deco img {
    display: block;
    width: 100%;
    height: auto;
}

.a4-allon4-doctors__photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* uk-h4-like author name */
.a4-allon4-doctors__name {
    margin: 0 0 4px;
    font-family: var(--a4-font-body);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--a4-color-heading);
}

@media (min-width: 960px) {
    .a4-allon4-doctors__name {
        font-size: 30px;
    }
}

.a4-allon4-doctors__role {
    margin: 0 0 20px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-doctors__list {
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--a4-color-text);
}

.a4-allon4-doctors__list ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
	margin-bottom: 20px;
}

.a4-allon4-doctors__list li {
    margin-bottom: 8px;
}

.a4-allon4-doctors__list li:last-child {
    margin-bottom: 0;
}

/* "Vita lesen" toggle — same technique as Section 13's "mehr lesen" */
.a4-allon4-doctors__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: 0;
	margin-top: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--a4-font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #666;
    transition: color 0.2s ease;
}

.a4-allon4-doctors__toggle:hover {
    color: #999;
}

.a4-allon4-doctors__more {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.a4-allon4-doctors__more.is-open {
    grid-template-rows: 1fr;
}

.a4-allon4-doctors__more-inner {
    overflow: hidden;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-doctors__more-inner p {
    margin: 20px 0 0;
}

/* ==========================================================================
   Section 17: FAQs - All-on-4
   ========================================================================== */

.a4-allon4-faq {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
}

.a4-allon4-faq__title {
    margin: 0 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--a4-color-primary);
}

@media (min-width: 960px) {
    .a4-allon4-faq__title {
        font-size: 50px;
    }
}

@media (max-width: 959px) {
    .a4-allon4-faq__title {
        font-size: 32px;
    }
}

@media (max-width: 375px) {
    .a4-allon4-faq__title {
        font-size: 28px;
    }
}

.a4-allon4-faq__text {
    margin: 0 0 40px;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

/* Category tabs — same visual language as the button in Section 12 */
.a4-allon4-faq__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.a4-allon4-faq__tab {
    padding: 7px 14px;
    border: 0;
    background: var(--a4-color-bg-muted);
    color: var(--a4-color-text);
    font-family: var(--a4-font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.a4-allon4-faq__tab:hover {
    background: #DFDFDF;
}

.a4-allon4-faq__tab.is-active {
    background: var(--a4-color-primary);
    color: #fff;
}

.a4-allon4-faq__tab.is-active:hover {
    background: var(--a4-color-primary);
}

.a4-allon4-faq__panel {
    display: none;
}

.a4-allon4-faq__panel.is-active {
    display: block;
}

.a4-allon4-faq__item {
    border-top: 1px solid var(--a4-color-border);
}

.a4-allon4-faq__item:first-child {
    border-top: 0;
}

.a4-allon4-faq__item:last-child {
    border-bottom: 1px solid var(--a4-color-border);
}

.a4-allon4-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--a4-font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #666;
    transition: color 0.2s ease;
}

.a4-allon4-faq__question:hover {
    color: #999;
}

.a4-allon4-faq__question[aria-expanded="true"] .a4-allon4-pricing__toggle-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.a4-allon4-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.a4-allon4-faq__answer.is-open {
    grid-template-rows: 1fr;
	padding-bottom: 40px;
}

.a4-allon4-faq__answer-inner {
    overflow: hidden;
    font-family: var(--a4-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--a4-color-text);
}

.a4-allon4-faq__answer-inner p {
    margin: 0 0 20px;
}

.a4-allon4-faq__answer-inner p:last-child {
    margin-bottom: 0;
}