/* Gemeinsame Styles für Retreat-Seite und Heilsame Beziehungen Seite */

/* Prevent any horizontal scrolling on Retreat/Beziehungen pages (fixes mobile slide/shift) */
body.retreat-page,
body.beziehungen-page {
    overflow-x: hidden;
}

/* Extra safety: sections on these pages should not create horizontal overflow */
body.retreat-page .hero,
body.beziehungen-page .hero,
body.retreat-page #swup,
body.beziehungen-page #swup {
    overflow-x: hidden;
}

/* Hero-Bereich Anpassungen für Retreat-Seite und Beziehungen-Seite */
.retreat-page .hero-text,
.beziehungen-page .hero-text {
    padding: 80px 120px 60px 120px; /* Mehr Abstand oben wegen Hamburger-Menü und Logo */
    align-items: flex-start;
}

/* Hero Text zentrieren wie auf Startseite */
.retreat-page .hero-text,
.beziehungen-page .hero-text {
    align-items: center;
    text-align: center;
}

.retreat-page .main-title,
.beziehungen-page .main-title {
    font-family: 'Alice', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Optimale Größe für gute Balance */
    font-weight: 400;
    color: #4b879a; /* Petrol wie auf Startseite */
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.retreat-page .subtitle,
.beziehungen-page .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem); /* Proportional angepasst */
    margin-bottom: 30px;
}

/* Hero CTA Button for Retreat Page and Beziehungen Page */
.retreat-page .hero-cta-button,
.beziehungen-page .hero-cta-button {
    display: inline-block;
    background: #d4a574;
    color: #112736;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px; /* Runder Button */
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.retreat-page .hero-cta-button:hover,
.beziehungen-page .hero-cta-button:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Experience Section */
.experience-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 3rem 0;
}

.experience-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.experience-text {
    margin-top: 2rem;
    text-align: left;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #112736;
}

/* Schedule Section */
.schedule-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #112736 0%, #4b879a 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.schedule-intro {
    font-size: 1.1rem;
    color: #fff8ef;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Accordion Styles */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 248, 239, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 248, 239, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 248, 239, 0.05);
}

.accordion-header:hover {
    background: rgba(255, 248, 239, 0.1);
}

.accordion-item.active .accordion-header {
    background: rgba(75, 135, 154, 0.2);
}

.day-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff8ef;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.day-title {
    color: #fff8ef;
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 1rem;
}

.accordion-icon {
    color: #fff8ef;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    background: rgba(255, 248, 239, 0.95);
    border-radius: 0 0 15px 15px;
    opacity: 0;
}

.accordion-item.active .accordion-content,
details.accordion-item[open] .accordion-content {
    opacity: 1;
}

.accordion-content p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: #112736;
    line-height: 1.7;
    font-size: 1.1rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.accordion-item:not(.active) .accordion-content p,
details.accordion-item:not([open]) .accordion-content p {
    transform: translateY(-10px);
}

/* Native details/summary accordion (NoScript fallback) */
details.accordion-item {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 248, 239, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 248, 239, 0.1);
}

details.accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    list-style: none;
}

details.accordion-item summary::-webkit-details-marker {
    display: none;
}

details.accordion-item summary::marker {
    display: none;
    content: "";
}

details.accordion-item summary:hover {
    background: rgba(255, 248, 239, 0.1);
}

details.accordion-item[open] summary {
    background: rgba(75, 135, 154, 0.2);
}

details.accordion-item .accordion-icon {
    transition: transform 0.3s ease;
}

details.accordion-item[open] .accordion-icon {
    transform: rotate(45deg);
}

/* Ohne JavaScript: native details/summary Funktionalität */
details.accordion-item .accordion-content {
    max-height: none;
    overflow: visible;
}

/* Mit JavaScript: Animation wird per inline-style gesteuert */
.js-enabled details.accordion-item .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
}

.js-enabled details.accordion-item[open] .accordion-content {
    /* max-height wird per JavaScript gesetzt */
}

/* Connection Section */
.connection-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 3rem 0;
}

.connection-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Personal Experience Section (Blue Background) - kept for retreat page */
.personal-experience-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #112736 0%, #4b879a 100%);
    padding: 3rem 0;
}

.personal-experience-section .connection-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.personal-experience-section .section-title {
    color: #fff8ef;
}

.personal-experience-section .section-description {
    color: #fff8ef;
    opacity: 0.9;
}

/* Painpoint Carousel Section */
.painpoint-carousel-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #112736 0%, #4b879a 100%);
    padding: 4rem 0;
}

.painpoint-content {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.painpoint-carousel-section .section-title {
    color: #fff8ef;
    margin-bottom: 2.5rem;
}

.painpoint-carousel {
    position: relative;
    margin: 0 auto;
}

.painpoint-slides {
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.painpoint-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.painpoint-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.painpoint-slide p {
    background: #fff8ef;
    color: #112736;
    padding: 1.8rem 2rem;
    border-radius: 12px;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.painpoint-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.painpoint-prev,
.painpoint-next {
    background: rgba(255, 248, 239, 0.15);
    border: 1px solid rgba(255, 248, 239, 0.3);
    color: #fff8ef;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.painpoint-prev:hover,
.painpoint-next:hover {
    background: rgba(255, 248, 239, 0.25);
    border-color: rgba(255, 248, 239, 0.5);
}

.painpoint-dots {
    display: flex;
    gap: 0.5rem;
}

.painpoint-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 248, 239, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.painpoint-dot.active {
    background: #d4a574;
    transform: scale(1.2);
}

.painpoint-dot:hover {
    background: rgba(255, 248, 239, 0.5);
}

.painpoint-reassurance {
    color: #fff8ef;
    font-size: 1.1rem;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Painpoint Carousel Responsive */
@media (max-width: 768px) {
    .painpoint-carousel-section {
        padding: 3rem 0;
    }

    .painpoint-slides {
        min-height: 200px;
    }

    .painpoint-slide p {
        font-size: 1.05rem;
        padding: 1.5rem 1.3rem;
    }

    .painpoint-prev,
    .painpoint-next {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .painpoint-carousel-section {
        padding: 2rem 0;
    }

    .painpoint-carousel-section .section-title {
        margin-bottom: 1.5rem;
    }

    .painpoint-slides {
        min-height: 160px;
    }

    .painpoint-slide p {
        font-size: 0.95rem;
        padding: 1.2rem 1rem;
        line-height: 1.55;
    }

    .painpoint-nav {
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .painpoint-dot {
        width: 7px;
        height: 7px;
    }
}

/* Accommodation Section */
.accommodation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4b879a 0%, #112736 100%);
    padding: 4rem 0 5rem 0;
}

.accommodation-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.accommodation-content .section-title {
    color: #fff8ef;
}

.accommodation-image {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.accommodation-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accommodation-content .section-description {
    color: #fff8ef;
    opacity: 0.9;
}

/* Practical Info Section */
.practical-info-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 4rem 0;
}

.practical-info-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.info-list {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #112736;
}

.info-bullet {
    color: #4b879a;
    margin-right: 1rem;
    font-weight: bold;
    margin-top: 0.05rem;
    flex-shrink: 0; /* Verhindert, dass der Bullet schrumpft */
    align-self: flex-start;
}

.info-item strong {
    color: #112736;
    font-weight: 600;
}

.info-item .info-content {
    flex: 1;
}

/* Linkfarbe im Special-Offer: Petrol */
.retreat-page .info-item .info-content a {
    color: #4b879a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.retreat-page .info-item .info-content a:hover {
    color: #3a6d7e;
    text-decoration-thickness: 2px;
}


.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.retreat-book-button {
    display: inline-block;
    background: #d4a574;
    color: #112736;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px; /* Runder Button */
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.retreat-book-button:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Retreat-Seite und Beziehungen-Seite spezifische Überschriften in Senfgelb */
.retreat-page .section-title,
.beziehungen-page .section-title {
    color: #d4a574; /* Senfgelb für Retreat-Seite und Beziehungen-Seite */
}

/* Responsive Design for Retreat Page and Beziehungen Page */
@media (max-width: 768px) {
    /* Hero responsive für Retreat-Seite und Beziehungen-Seite */
    .retreat-page .hero-content,
    .beziehungen-page .hero-content {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .retreat-page .hero-text,
    .beziehungen-page .hero-text {
        padding: 60px 30px 40px 30px; /* Mehr Padding oben für Hamburger-Menü */
        text-align: center;
        align-items: center;
        flex: 0 0 auto;
        min-height: 45vh; /* Weniger Platz für Text, mehr für Bild */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .retreat-page .main-title,
    .beziehungen-page .main-title {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }

    .retreat-page .subtitle,
    .beziehungen-page .subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.5rem);
        justify-content: center;
    }

    .retreat-page .hero-cta-button,
    .beziehungen-page .hero-cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .retreat-page .hero-image,
    .beziehungen-page .hero-image {
        flex: 1;
        min-height: 60vh; /* Höher für bessere Abdeckung */
        width: 100%;
        overflow: hidden;
    }

    .retreat-page .hero-image img,
    .beziehungen-page .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        min-height: 60vh; /* Mindesthöhe für vollständige Abdeckung */
    }

    /* Accordion responsive */
    .accordion-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        position: relative;
    }

    .day-number {
        font-size: 1rem;
    }

    .day-title {
        margin-left: 0;
        font-size: 1rem;
    }

    .accordion-icon {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
    }

    .accordion-content p {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    /* Native details/summary responsive */
    details.accordion-item summary {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        position: relative;
    }

    details.accordion-item .accordion-icon {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
    }

    /* Info list responsive */
    .info-item {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .info-bullet {
        margin-right: 0.8rem;
        margin-top: 0.1rem;
    }

    .experience-text p {
        font-size: 1rem;
    }

    .schedule-intro {
        font-size: 1rem;
    }

    .retreat-book-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .accommodation-image img {
        max-width: 400px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    /* Mobile accordion adjustments */
    .accordion-header {
        padding: 0.8rem 1rem;
    }

    .accordion-icon {
        top: 0.8rem;
        right: 1rem;
    }

    .day-number {
        font-size: 0.95rem;
    }

    .day-title {
        font-size: 0.95rem;
    }

    .accordion-content p {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
    }

    /* Native details/summary mobile */
    details.accordion-item summary {
        padding: 0.8rem 1rem;
    }

    details.accordion-item .accordion-icon {
        top: 0.8rem;
        right: 1rem;
    }

    /* Mobile section adjustments */
    .experience-section,
    .connection-section,
    .practical-info-section,
    .accommodation-section {
        padding: 2rem 1rem; /* Mehr seitlicher Abstand */
    }

    .container {
        padding: 0 1rem; /* Zusätzlicher Container-Padding */
    }

    .section-title {
        font-size: 2rem; /* Kleinere Überschriften auf Mobile */
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .experience-text p {
        font-size: 1rem;
    }

    .retreat-book-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .accommodation-image img {
        max-width: 300px;
        border-radius: 10px;
    }

    /* Hero responsive für Mobile */
    .retreat-page .hero-text,
    .beziehungen-page .hero-text {
        padding: 60px 20px 20px 20px; /* Mehr Padding oben für Hamburger-Menü */
        min-height: 40vh; /* Kompakter für kleine Bildschirme */
    }

    .retreat-page .main-title,
    .beziehungen-page .main-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        margin-bottom: 10px; /* Weniger Abstand */
    }

    .retreat-page .subtitle,
    .beziehungen-page .subtitle {
        font-size: clamp(1rem, 4.5vw, 1.3rem);
        margin-bottom: 20px; /* Weniger Abstand */
    }

    .retreat-page .hero-cta-button,
    .beziehungen-page .hero-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .retreat-page .hero-image,
    .beziehungen-page .hero-image {
        min-height: 65vh; /* Höher für bessere Abdeckung auf kleinen Bildschirmen */
        overflow: hidden;
    }

    .retreat-page .hero-image img,
    .beziehungen-page .hero-image img {
        min-height: 65vh;
    }

    .info-item {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
    }

    .info-bullet {
        margin-right: 0.7rem;
    }
}

/* Course Offering Section (What this course offers) */
.course-offering-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8ef;
    padding: 4rem 0;
}

.course-offering-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.offering-list {
    margin: 2.5rem auto 0;
    text-align: left;
}

.offering-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.offering-item:last-child {
    margin-bottom: 0;
}

.offering-not,
.offering-but {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.offering-not {
    color: #5a2a2a;
    background: rgba(139, 69, 69, 0.08);
}

.offering-but {
    color: #2a4a2a;
    background: rgba(69, 120, 69, 0.08);
}

.offering-not::before {
    content: "✕";
    color: #8b4545;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.offering-but::before {
    content: "✓";
    color: #457845;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Course Offering Section Responsive */
@media (max-width: 768px) {
    .course-offering-section {
        padding: 3rem 0;
    }

    .offering-item {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .offering-not,
    .offering-but {
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
    }
}

@media (max-width: 480px) {
    .offering-not,
    .offering-but {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0.8rem 0.9rem;
    }

    .offering-item {
        margin-bottom: 2.2rem;
    }
}

/* ========================================
   Transformation Timeline Section (JS-based)
   ======================================== */
.transformation-section {
    background: linear-gradient(135deg, #112736 0%, #4b879a 100%);
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.transformation-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transformation-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* SVG Snake Line */
.transformation-snake-svg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

/* Points Container */
.transformation-points {
    position: relative;
    z-index: 2;
}

/* Individual Point - positioned absolutely by JS */
.transformation-point {
    position: absolute;
    max-width: 340px;
}

/* Content box */
.point-content {
    background: rgba(255, 248, 239, 0.08);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 248, 239, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.point-content:hover {
    transform: scale(1.02);
    background: rgba(255, 248, 239, 0.12);
}

.point-content p {
    color: #fff8ef;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Final Result Section - highlighted box */
.transformation-finale {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem;
    background: rgba(212, 165, 116, 0.15);
    border: 2px solid rgba(212, 165, 116, 0.5);
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.finale-text {
    color: #fff8ef;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Transformation Timeline - Tablet
   ======================================== */
@media (max-width: 900px) {
    .point-content {
        padding: 0.9rem 1rem;
    }

    .point-content p {
        font-size: 0.9rem;
    }

    .transformation-point {
        max-width: 280px;
    }
}

/* ========================================
   Transformation Timeline - Mobile
   ======================================== */
@media (max-width: 768px) {
    .transformation-section {
        padding: 3rem 0 4rem;
    }

    .transformation-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .transformation-timeline {
        max-width: 100%;
    }

    /* Mobile flowchart style */
    .transformation-point-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* No padding here - keeps dots truly centered */
    }

    .transformation-point-mobile .point-content {
        max-width: calc(100% - 2rem);
        padding: 1rem 1.2rem;
        position: relative;
        z-index: 2;
    }

    .transformation-point-mobile .point-content p {
        font-size: 0.95rem;
        text-align: center;
    }

    /* Dots at box edges - truly centered */
    .mobile-dot {
        width: 6px;
        height: 6px;
        background: #fff8ef;
        border-radius: 50%;
        margin: -3px auto;
        z-index: 5;
        flex-shrink: 0;
        position: relative;
        z-index: 5;
    }

    /* Connector lines between boxes */
    .mobile-connector {
        width: 6px;
        height: 40px;
        display: block;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .mobile-connector path {
        stroke: rgba(255, 248, 239, 0.6);
    }

    /* Arrow at the end */
    .mobile-arrow {
        width: 30px;
        height: 45px;
        display: block;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .mobile-arrow path {
        stroke: rgba(255, 248, 239, 0.6);
    }

    .transformation-finale {
        text-align: center;
        padding: 1.2rem 1.5rem;
        max-width: 90%;
        margin: 0 auto;
    }

    .finale-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .transformation-section {
        padding: 2.5rem 0 3rem;
    }

    .transformation-section .section-title {
        font-size: 1.3rem;
    }

    .transformation-point-mobile .point-content {
        padding: 0.9rem 1rem;
    }

    .transformation-point-mobile .point-content p {
        font-size: 0.9rem;
    }

    .finale-text {
        font-size: 1rem;
    }
}

