html, body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

main {
    background-color: #FDFBF7;
    min-height: 100vh;
}

.render-optimized {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

p, h1, h2, h3, h4, th, td, span, strong, a, li, label, div, summary {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: normal !important; 
    hyphens: none !important; 
}

@keyframes flyInLeftSmooth {
    0% { transform: translateX(-180px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background-color: #FDFBF7;
}

.hero-bg-image-native {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation: cameraZoomIn 16s ease-in-out infinite alternate;
}

@keyframes cameraZoomIn {
    0% { transform: scale(1) translateZ(0); }
    100% { transform: scale(1.15) translateZ(0); }
}

.hero-card {
    position: relative;
    z-index: 2;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(30px, 6vw, 50px) clamp(15px, 5vw, 40px);
    border-radius: 24px;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 100%;
    opacity: 0;
    will-change: transform, opacity;
    animation: flyInLeftSmooth 1.6s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

.hero-title {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 900;
    color: #1A365D;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.hero-text-bold {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: #1A365D;
    max-width: 720px;
    margin: 0 auto 35px auto;
    font-weight: 700;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.welcome-section {
    margin: 90px auto 50px auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.welcome-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 0 auto 40px auto;
    display: block;
}

.welcome-headline {
    font-size: clamp(1.6rem, 4.2vw, 2.8rem);
    font-weight: 900;
    color: #1A365D;
    line-height: 1.4;
    max-width: 950px;
    margin: 0 auto 20px auto;
    letter-spacing: -0.5px;
}

.headline-line {
    display: block;
}

.highlight-blue {
    color: #1A365D;
    font-weight: 900;
}

.highlight-gold {
    color: #E0A96D;
    font-weight: 900;
}

.welcome-divider {
    width: 60px;
    height: 4px;
    background-color: #E0A96D;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

.welcome-subheadline {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: #744600;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.text-group {
    display: inline-block;
}

.welcome-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 45px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 760px;
    width: 100%;
}

.welcome-features li {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A365D;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.03);
    border: 1px solid rgba(26, 54, 93, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-features li:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.06);
}

.welcome-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.welcome-features li svg polyline {
    stroke: #E0A96D;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.welcome-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.agency-profile-box {
    background: #FFFFFF; 
    border-left: 5px solid #1A365D; 
    padding: 40px; 
    border-radius: 0 24px 24px 0; 
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.02); 
    border-top: 1px solid rgba(26, 54, 93, 0.04); 
    border-right: 1px solid rgba(26, 54, 93, 0.04); 
    border-bottom: 1px solid rgba(26, 54, 93, 0.04);
    margin: 40px auto 90px auto;
    text-align: left;
}

.agency-profile-box h3 {
    font-size: 1.35rem; 
    font-weight: 800; 
    color: #1A365D; 
    margin: 0 0 18px 0; 
    font-family: 'Montserrat', sans-serif;
}

.agency-profile-box p {
    color: #2C302E; 
    line-height: 1.8; 
    font-size: 1.02rem; 
    font-weight: 500; 
    margin: 0 0 16px 0; 
    font-family: 'Montserrat', sans-serif;
}

.agency-profile-box strong {
    font-weight: 700;
    color: #1A365D;
}

.agency-profile-box p:last-child {
    margin-bottom: 0;
}

.guarantee-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF9 50%, #FFF5EA 100%) !important;
    border: 2px solid #E0A96D !important;
    border-radius: 24px;
    padding: 40px;
    margin: 0 auto 110px auto;
    max-width: 950px;
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.06), 0 10px 25px rgba(224, 169, 109, 0.08) !important;
    display: flex;
    align-items: center;
    gap: 35px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.guarantee-section:hover {
    transform: scale(1.03) translateY(-4px) !important;
    box-shadow: 0 35px 60px rgba(26, 54, 93, 0.12), 0 15px 30px rgba(224, 169, 109, 0.15) !important;
    z-index: 20; 
}

.guarantee-icon-box {
    flex-shrink: 0;
    background: #1A365D;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15);
}

.guarantee-icon-box svg {
    width: 40px;
    height: 40px;
}

.guarantee-icon-box svg path {
    stroke: #E0A96D;
    stroke-width: 1.8;
    fill: none;
}

.guarantee-content h3 {
    margin: 0 0 4px 0;
    color: #1A365D;
    font-size: 1.4rem;
    font-weight: 900;
}

.guarantee-subtitle {
    color: #22543D;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.guarantee-content p {
    margin: 0;
    color: #2C302E;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
}

.portfolio-section {
    margin: 0 auto 140px auto;
    text-align: center;
}

.portfolio-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1A365D;
    margin: 0 0 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.portfolio-subtitle {
    font-size: 1rem;
    color: #2C302E;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-family: 'Montserrat', sans-serif;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
}

.sunshine-card {
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 12px 35px rgba(26, 54, 93, 0.04), 0 4px 10px rgba(0, 0, 0, 0.01);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.sunshine-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.08), 0 10px 20px rgba(0, 0, 0, 0.02) !important;
    z-index: 20; 
}

.sunshine-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.portfolio-grid .sunshine-card:nth-child(1),
.portfolio-grid .sunshine-card:nth-child(2),
.portfolio-grid .sunshine-card:nth-child(3) {
    background: #EAF4FC !important;
    border: 1px solid rgba(26, 54, 93, 0.1) !important;
}
.portfolio-grid .sunshine-card:nth-child(1)::before,
.portfolio-grid .sunshine-card:nth-child(2)::before,
.portfolio-grid .sunshine-card:nth-child(3):before { background: #1A365D; }
.portfolio-grid .sunshine-card:nth-child(1):hover,
.portfolio-grid .sunshine-card:nth-child(2):hover,
.portfolio-grid .sunshine-card:nth-child(3):hover { border-color: rgba(26, 54, 93, 0.3) !important; }

.portfolio-grid .sunshine-card:nth-child(4),
.portfolio-grid .sunshine-card:nth-child(5),
.portfolio-grid .sunshine-card:nth-child(6) {
    background: #FDF8F0 !important;
    border: 1px solid rgba(224, 169, 109, 0.2) !important;
}
.portfolio-grid .sunshine-card:nth-child(4)::before,
.portfolio-grid .sunshine-card:nth-child(5)::before,
.portfolio-grid .sunshine-card:nth-child(6)::before { background: #E0A96D; }
.portfolio-grid .sunshine-card:nth-child(4):hover,
.portfolio-grid .sunshine-card:nth-child(5):hover,
.portfolio-grid .sunshine-card:nth-child(6):hover { border-color: rgba(224, 169, 109, 0.5) !important; }

.portfolio-grid .sunshine-card:nth-child(7),
.portfolio-grid .sunshine-card:nth-child(8) {
    background: #F1F8F5 !important;
    border: 1px solid rgba(34, 84, 61, 0.1) !important;
}
.portfolio-grid .sunshine-card:nth-child(7)::before,
.portfolio-grid .sunshine-card:nth-child(8)::before { background: #22543D; }
.portfolio-grid .sunshine-card:nth-child(7):hover,
.portfolio-grid .sunshine-card:nth-child(8):hover { border-color: rgba(34, 84, 61, 0.3) !important; }

.portfolio-grid .sunshine-card:nth-child(9) {
    background: #F6F5F8 !important;
    border: 1px solid rgba(80, 70, 90, 0.1) !important;
}
.portfolio-grid .sunshine-card:nth-child(9)::before { background: #50465A; }
.portfolio-grid .sunshine-card:nth-child(9):hover { border-color: rgba(80, 70, 90, 0.3) !important; }

.card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon path, .card-icon circle, .card-icon rect, .card-icon line, .card-icon polyline, .card-icon polygon {
    stroke: #E0A96D;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.sunshine-card:hover .card-icon path,
.sunshine-card:hover .card-icon circle,
.sunshine-card:hover .card-icon rect,
.sunshine-card:hover .card-icon line,
.sunshine-card:hover .card-icon polyline,
.sunshine-card:hover .card-icon polygon {
    stroke: #1A365D !important;
    stroke-width: 1.5;
}

.sunshine-card:hover .card-icon { transform: scale(1.15); }
.card-inner-title { font-size: 1.25rem; color: #1A365D; margin: 0 0 12px 0; font-weight: 700; }
.card-inner-text { color: #2C302E; line-height: 1.6; margin: 0; font-size: 0.95rem; }

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    background-color: #1A365D;
    color: #FFFFFF;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    margin-top: 25px;
    width: fit-content;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.12);
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-button::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(224, 169, 109, 0.2), transparent);
    transform: translateX(-200%) skewX(-25deg);
    animation: lightSweep 4s infinite ease-in-out;
}

@keyframes lightSweep {
    0% { transform: translateX(-200%) skewX(-25deg); }
    25% { transform: translateX(250%) skewX(-25deg); }
    100% { transform: translateX(250%) skewX(-25deg); }
}

.card-button svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.sunshine-card:hover .card-button { background-color: #E0A96D; color: #2C302E; box-shadow: 0 6px 20px rgba(224, 169, 109, 0.25); }
.sunshine-card:hover .card-button svg { transform: translateX(4px); }
.card-button:hover { transform: scale(1.02); box-shadow: 0 10px 25px rgba(224, 169, 109, 0.4), 0 0 0 4px rgba(224, 169, 109, 0.15); }

.sunshine-button {
    display: inline-block;
    background-color: #E0A96D; 
    color: #2C302E;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(224, 169, 109, 0.25);
    transition: 0.3s ease;
}

.sunshine-button:hover { background-color: #d49c60; transform: scale(1.02); box-shadow: 0 6px 20px rgba(224, 169, 109, 0.35); }

.standards-section { margin: 0 auto 140px auto; text-align: center; font-family: 'Montserrat', sans-serif; }
.standards-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: #1A365D; margin: 0 0 15px 0; }
.standards-divider { width: 60px; height: 4px; background-color: #E0A96D; margin: 0 auto 30px auto; border-radius: 2px; }
.standards-subtitle { font-size: 1.05rem; color: #2C302E; max-width: 800px; margin: 0 auto 50px auto; line-height: 1.7; font-weight: 500; }
.standards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.standard-box {
    padding: 35px 25px;
    border-radius: 20px;
    position: relative;
    text-align: left;
    height: 100%;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.standard-box:hover { 
    transform: scale(1.03) translateY(-2px); 
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.07); 
    z-index: 20; 
}
.standard-box h3 { font-size: 1.25rem; margin: 0 0 12px 0; font-weight: 800; }
.standard-num { font-size: 2.2rem; font-weight: 900; margin-bottom: 15px; }

.standards-grid .standard-box:nth-child(1) { background: #FFFFFF !important; border: 2px solid #1A365D !important; }
.standards-grid .standard-box:nth-child(1) h3, .standards-grid .standard-box:nth-child(1) .standard-num { color: #1A365D !important; }

.standards-grid .standard-box:nth-child(2) { background: #EAF4FC !important; border: 2px solid #4A90E2 !important; }
.standards-grid .standard-box:nth-child(2) h3, .standards-grid .standard-box:nth-child(2) .standard-num { color: #1A365D !important; }

.standards-grid .standard-box:nth-child(3) { background: #F1F8F5 !important; border: 2px solid #22543D !important; }
.standards-grid .standard-box:nth-child(3) h3, .standards-grid .standard-box:nth-child(3) .standard-num { color: #22543D !important; }

.standards-grid .standard-box:nth-child(4) { background: #FDF8F0 !important; border: 2px solid #E0A96D !important; }
.standards-grid .standard-box:nth-child(4) h3, .standards-grid .standard-box:nth-child(4) .standard-num { color: #744600 !important; }

.responsive-mockup-section { margin: 0 auto 110px auto; text-align: center; }
.responsive-mockup-img { width: 100%; max-width: 750px; height: auto; border-radius: 16px; box-shadow: 0 12px 35px rgba(26, 54, 93, 0.05); }

.about-section { margin: 0 auto 100px auto; }
.about-card { background: #FFFFFF; padding: clamp(30px, 5vw, 50px); border-radius: 24px; box-shadow: 0 15px 40px rgba(26, 54, 93, 0.04); border: 1px solid rgba(26, 54, 93, 0.06); font-family: 'Montserrat', sans-serif; }
.about-flex { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.about-img-col { flex: 1; min-width: 280px; text-align: center; }
.about-img { width: 100%; max-width: 450px; height: auto; border-radius: 16px; box-shadow: 0 10px 25px rgba(26, 54, 93, 0.04); object-fit: cover; }
.about-text-col { flex: 1.2; min-width: 280px; text-align: left; width: 100%; }
.about-tag { color: #1A365D; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.about-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: #1A365D; margin: 0 0 20px 0; line-height: 1.2; }
.about-divider { width: 40px; height: 4px; background-color: #E0A96D; margin-bottom: 25px; border-radius: 2px; }
.about-p { color: #2C302E; font-size: 1.05rem; line-height: 1.7; font-weight: 500; margin: 0 0 25px 0; }

.process-section { padding: 80px 0 30px 0; font-family: 'Montserrat', sans-serif; width: 100%; }
.process-main-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: #1A365D; text-align: center; margin-bottom: 12px; }
.process-subtitle { font-size: 1.05rem; color: #1A365D; text-align: center; font-weight: 700; margin-bottom: 55px; text-transform: uppercase; letter-spacing: 1px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; width: 100%; }

.process-card {
    text-align: center;
    padding: 40px 25px 30px 25px;
    border-radius: 20px;
    position: relative;
    border: 2px solid #E0A96D !important; 
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}
.process-card:hover { 
    transform: scale(1.03) translateY(-2px); 
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.07); 
    z-index: 20; 
}

.process-grid .process-card:nth-child(1) { background: #FFFFFF !important; }
.process-grid .process-card:nth-child(2) { background: #EAF4FC !important; }
.process-grid .process-card:nth-child(3) { background: #FDF8F0 !important; }
.process-grid .process-card:nth-child(4) { background: #F1F8F5 !important; }

.process-number { font-size: 3rem; font-weight: 900; color: rgba(224, 169, 109, 0.2); position: absolute; top: 5px; right: 20px; line-height: 1; user-select: none; }
.process-card-icon-wrapper { width: 48px; height: 48px; background: rgba(26, 54, 93, 0.03); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; }
.process-vector-icon { width: 22px; height: 22px; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.process-vector-icon path, .process-vector-icon circle, .process-vector-icon polyline { stroke: #E0A96D; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; transition: stroke 0.3s ease, stroke-width 0.3s ease; }
.process-card:hover .process-vector-icon { transform: scale(1.15); }
.process-card:hover .process-vector-icon path, .process-card:hover .process-vector-icon circle, .process-card:hover .process-vector-icon polyline { stroke: #1A365D !important; stroke-width: 2; }
.process-card h3 { font-size: 1.15rem; color: #1A365D; font-weight: 800; margin: 0 0 12px 0; line-height: 1.3; }
.process-card p { font-size: 0.92rem; color: #2C302E; line-height: 1.6; margin: 0; font-weight: 500; }

.faq-wrapper { background-color: #F8F9FA; padding: 80px 0 100px 0; border-top: 1px solid rgba(26, 54, 93, 0.05); margin: 80px auto 0 auto; width: 100%; }
.faq-section { max-width: 900px; margin: 0 auto; }
.faq-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: #1A365D; text-align: center; margin: 0 0 15px 0; font-family: 'Montserrat', sans-serif; }
.faq-divider { width: 60px; height: 4px; background-color: #E0A96D; margin: 0 auto 50px auto; border-radius: 2px; }
.faq-container { display: flex; flex-direction: column; gap: 20px; text-align: left; font-family: 'Montserrat', sans-serif; }
.faq-item { background: #FFFFFF; border: 1px solid rgba(26, 54, 93, 0.08); border-left: 5px solid #1A365D; border-radius: 0 12px 12px 0; padding: 20px 25px; transition: 0.3s ease; }
.faq-item:hover { transform: scale(1.02); box-shadow: 0 10px 20px rgba(26, 54, 93, 0.04); }
.faq-question-btn { width: 100%; background: none; border: none; padding: 0; margin: 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: inherit; }
.faq-question-btn:focus { outline: 2px dashed #E0A96D; outline-offset: 4px; }
.faq-question-text { font-weight: 700; color: #1A365D; font-size: 1.15rem; padding-right: 20px; }
.faq-plus-icon { width: 24px; height: 24px; flex-shrink: 0; stroke: #E0A96D; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease; }
.faq-item:hover .faq-plus-icon { stroke: #1A365D; }
.faq-answer-container { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.4s ease; }
.faq-answer { color: #2C302E; line-height: 1.6; margin: 0; padding-top: 15px; font-size: 0.95rem; }
.faq-item.active .faq-answer-container { max-height: 1000px; }
.faq-item.active .faq-plus-icon { transform: rotate(45deg); stroke: #1A365D; }

.wk-cookie-links { display: none; }

.timed-flyin-card {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0; visibility: hidden;
    background: linear-gradient(135deg, #FFF9F2 0%, #FFE2B7 60%, #FFC170 100%);
    border-radius: 24px;
    padding: 45px 30px 40px 30px;
    max-width: 460px;
    width: calc(100% - 40px);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.9), 0 25px 60px rgba(26, 54, 93, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 10000100;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s ease;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

.timed-flyin-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
}

.timed-flyin-card.visible { transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible; }

.promo-close-btn {
    position: absolute;
    top: 16px; right: 16px;
    background: #E53935;
    border: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1; padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.promo-close-btn:hover, .promo-close-btn:focus { background-color: #C62828; transform: scale(1.05); outline: none; }
.promo-card-tag { display: inline-block; background: #FFFFFF; color: #1A365D; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 5px 14px; border-radius: 6px; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; position: relative; z-index: 2; }
.promo-card-title { font-size: 1.3rem; color: #1A365D; font-weight: 900; margin: 0 0 10px 0; letter-spacing: -0.3px; line-height: 1.3; font-family: 'Montserrat', sans-serif; position: relative; z-index: 2; }
.promo-card-desc { color: #2C302E; font-size: 0.95rem; line-height: 1.6; margin: 0 0 24px 0; font-weight: 600; font-family: 'Montserrat', sans-serif; position: relative; z-index: 2; }
.promo-card-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background-color: #1A365D; color: #FFFFFF; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 0.92rem; text-decoration: none; font-family: 'Montserrat', sans-serif; box-shadow: 0 5px 15px rgba(26, 54, 93, 0.18); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease; width: 100%; box-sizing: border-box; position: relative; z-index: 2; }
.promo-card-btn svg { width: 14px; height: 14px; fill: none; transition: transform 0.3s ease; }
.promo-card-btn:hover { background-color: #2C302E; color: #FFFFFF; transform: scale(1.02); }
.promo-card-btn:hover svg { transform: translateX(3px); }

#wm-splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #111111;
    display: flex; justify-content: center; align-items: center;
    z-index: 9999999; overflow: hidden; perspective: 1200px;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

/* KOMPROMISSLOSE TRANSITIONS-KORREKTUR GEGEN NON-COMPOSITED REPAINTS ( visibility verboten) */
#wm-splash-screen.fade-out-splash {
    opacity: 0 !important;
    pointer-events: none !important;
}

.splash-scene { position: relative; width: 600px; height: 400px; display: flex; justify-content: center; align-items: center; }
.motion-arc-vector { position: absolute; width: 320px; height: 200px; left: 80px; top: 40px; opacity: 0; will-change: transform, opacity; transform: translateZ(0); animation: arcReveal 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.football-3d-premium { position: absolute; width: 140px; height: 140px; left: 230px; top: 100px; will-change: transform, opacity; transform: translateZ(0) scale(0.3); opacity: 0; animation: ballBoomPremium 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; animation-delay: 0.8s; }
.wm-headline-animated { position: absolute; bottom: 20px; width: 100%; text-align: center; font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: #FFFFFF; opacity: 0; transform: translateY(20px); animation: textReveal 0.8s ease-out forwards; animation-delay: 0.3s; }
.wm-headline-animated span { display: block; font-size: 18px; font-weight: 500; color: #E0A96D; margin-top: 4px; }

@keyframes arcReveal { 0% { opacity: 0; transform: translateX(-100px) rotate(-15deg); } 50% { opacity: 1; } 100% { transform: translateX(0) rotate(0deg); opacity: 0.4; } }
@keyframes ballBoomPremium { 0% { transform: scale(0.3) rotate(0deg) translateZ(0); opacity: 0; } 30% { opacity: 1; transform: scale(1.1) rotate(180deg); } 100% { transform: scale(55) rotate(540deg) translateZ(600px); opacity: 1; } }
@keyframes textReveal { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 0.8; transform: translateY(0); } }

.reveal-element {
    opacity: 0;
    transform: translate3d(0, 220px, 0); 
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 2.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 2.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-element.in-view {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

@media (min-width: 769px) {
    .delay-1 { transition-delay: 0.12s; }
    .delay-2 { transition-delay: 0.24s; }
    .delay-3 { transition-delay: 0.36s; } 
}

.portfolio-grid .reveal-element,
.standards-grid .reveal-element,
.process-grid .reveal-element {
    transform: translate3d(0, 320px, 0);
    transition: transform 3.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 3.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.portfolio-grid .reveal-element.in-view,
.standards-grid .reveal-element.in-view,
.process-grid .reveal-element.in-view {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* ==========================================================================
   EISERNER ACCESSIBILITY CONTRAST RESET (Wechsel von 96 auf 100 Punkte)
   ========================================================================== */
.footer-credits {
    color: #FFFFFF !important; 
    font-weight: 600 !important;
}

.footer-agency-link {
    color: #FFFDF9 !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
}

.footer-agency-link:hover {
    color: #E0A96D !important;
}

#cmp-btn-accept-all.cmp-btn.primary {
    color: #2C302E !important; 
    font-weight: 800 !important;
}

@media (max-width: 992px) { 
    .process-grid, .standards-grid, .portfolio-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
    } 
}

@media (max-width: 768px) {
    .sticky-booking-btn { display: none !important; } 
    
    .welcome-features {
        grid-template-columns: 1fr !important;
    }

    .standards-grid, .process-grid, .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .guarantee-section {
        flex-direction: column !important;
        text-align: center !important;
        padding: 30px 20px !important;
        gap: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .guarantee-content { width: 100% !important; }
    .guarantee-content p {
        font-size: 0.95rem !important;
        text-wrap: normal !important; 
        word-wrap: break-word !important;
    }
    .desktop-br { display: none !important; }
}

@media (max-width: 576px) { 
    .process-card, .standard-box, .sunshine-card {
        padding: 30px 20px !important; 
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        min-width: 0 !important;
    }
    .process-card p, .standard-box p, .sunshine-card p {
        font-size: 0.92rem !important; 
        line-height: 1.6 !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
    }
    .process-number, .standard-num { font-size: 2.2rem !important; top: 15px !important; right: 20px !important; }
    .process-card-icon-wrapper { width: 45px !important; height: 45px !important; margin-bottom: 15px !important; }
    .process-card h3, .standard-box h3, .sunshine-card h3 { font-size: 1.1rem !important; margin-bottom: 10px !important; }
}

@media (min-width: 769px) {
    .desktop-br { display: inline !important; }
    .floating-contact-bar { right: 40px !important; }
    .scroll-to-top, #scrollToTopBtn, #back-to-top, .back-to-top-btn { right: 40px !important; }
    .sticky-booking-btn { right: 0 !important; border-radius: 12px 0 0 12px !important; }
}


/* --------------------------------------------------------------------------
   UMBRUCHSCHUTZ
   Verhindert, dass zusammengehoerende Begriffe wie "Rheinland-Pfalz"
   am Bindestrich getrennt werden.
   -------------------------------------------------------------------------- */

.nowrap {
    white-space: nowrap;
}