@charset "utf-8";

/* =========================================
   Global & Reset
========================================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
    word-break: keep-all; /* Korean typography standard */
}

html {
    scroll-behavior: smooth;
}

body {
    color: #111111;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #07111f;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.18);
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: translateY(0);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul, ol, li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* =========================================
   Utility Classes
========================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.section-padding {
    padding: 120px 0;
}

.pc_br {
    display: inline;
}

.m_br {
    display: none;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .section-padding {
        padding: 80px 0;
    }
    .pc_br {
        display: none;
    }
    .m_br {
        display: inline;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .section-padding {
        padding: 60px 0;
    }
}


/* =========================================
   Top Bar Component
========================================= */
.top-bar {
    background: #111111;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-info i {
    font-size: 14px;
    color: #22ab3c; /* Accent Green */
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}



/* =========================================
   Mobile Quick Menu Component
========================================= */
.mobile-quick-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1500;
    padding: 10px 0;
}

.quick-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 100%;
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    text-decoration: none;
    color: #666666;
    transition: 0.2s;
}

.quick-menu-item:active {
    background: #f5f5f5;
}

.quick-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 22px;
}

.quick-menu-icon.phone {
    background: linear-gradient(135deg, #01419a, #0056b3);
    color: #ffffff;
}

.quick-menu-icon.sms {
    background: linear-gradient(135deg, #22ab3c, #2ecc71);
    color: #ffffff;
}

.quick-menu-icon.quote {
    background: linear-gradient(135deg, #01419a, #333);
    color: #ffffff;
}

.quick-menu-icon.kakao {
    background: #fee500;
    color: #3c1e1e;
}

.quick-menu-icon.naver {
    background: #03c75a;
    color: #ffffff;
}

.quick-menu-label {
    font-size: 11px;
    font-weight: 500;
    color: #666666;
}


/* =========================================
   Section Headers
========================================= */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-sub {
    color: #01419a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px; /* Increased slightly */
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .section-header {
        margin-bottom: 50px;
    }
    .section-title {
        font-size: 36px;
    }
    .section-desc {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 28px;
    }
    .section-desc {
        font-size: 16px;
    }
    .section-sub {
        font-size: 13px;
    }
}



/* =========================================
   Certifications Component
========================================= */
.cert-wrap {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cert-card {
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 40px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: 0.4s;
    border: 1px solid #eef0f4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(1, 65, 154, 0.08);
    border-color: #01419a;
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: #f4f7fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #01419a;
    font-size: 36px;
    transition: 0.4s;
}

.cert-card:hover .cert-icon {
    background: #01419a;
    color: #ffffff;
}

.cert-txt {
    padding: 0;
}

.cert-title {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.cert-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

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

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


/* =========================================
   Business Services Component
========================================= */
.biz-full-wrap {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
}

.biz-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 5, 20, 0.88); /* Darker blue overlay */
    z-index: 1;
}

.biz-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.biz-card {
    border-radius: 12px;
    transition: 0.3s;
    background: #ffffff;
    color:#000;
}

.biz-card:hover {
    transform: translateY(-10px);
}




.biz-icon-circle {
    width: 100%;
    height:200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: 0.3s;
}


.biz-card-content {
    padding: 15px 25px;
}

.biz-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom:5px;
    transition: 0.3s;
}

.biz-card p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin-bottom:5px;
    transition: 0.3s;
    word-break: keep-all;
}

.biz-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #22ab3c; /* Green link */
    transition: 0.3s;
}

.biz-card:hover .biz-link {
    color: #01419a;
}

@media (max-width: 1024px) {
    .biz-full-wrap {
        padding: 80px 0;
    }
    .biz-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .biz-full-wrap {
        padding: 60px 0;
    }
    .biz-card-grid {
        grid-template-columns: 1fr;
    }
    .biz-card {
        padding: 30px 25px;
    }
    .biz-card h3 {
        font-size: 20px;
    }
    .biz-card p {
        font-size: 15px;
    }
}


/* =========================================
   Residential Service Component
========================================= */
.home-full-wrap {
    padding: 100px 0;
    background: #fdfdfd;
}

.home-header-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.home-tit-box {
    flex: 1;
}

.home-sub {
    color: #01419a; /* Accent Green */
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.home-tit-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 30px;
}

.home-tit-box p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-home-counsel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111111;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.btn-home-counsel:hover {
    background: #01419a;
    transform: translateX(5px);
}

.home-service-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.home-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.home-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.home-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.home-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.home-item:hover .home-thumb img {
    transform: scale(1.1);
}

.home-icon-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01419a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 24px;
}

.home-txt-box {
    padding: 25px;
}

.home-txt-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-txt-box p {
    font-size: 15px;
    color: #777777;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .home-header-row {
        flex-direction: column;
        gap: 40px;
    }
    .home-tit-box {
        text-align: center;
    }
    .home-sub {
        justify-content: center;
        display: flex;
    }
    .home-tit-box h2 {
        font-size: 36px;
    }
    .home-service-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-full-wrap {
        padding: 60px 0;
    }
    .home-tit-box h2 {
        font-size: 28px;
    }
    .home-tit-box p {
        font-size: 16px;
    }
    .home-service-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Process Component
========================================= */
.process-wrap {
    background: #ffffff;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-step {
    font-size: 14px;
    font-weight: 800;
    color: #898989;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.process-icon-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: #01419a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #ffffff;
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.process-card:hover .process-icon-box {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(1, 65, 154, 0.3);
}

.process-tit {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-desc {
    font-size: 16px;
    color: #777777;
    word-break: keep-all;
}

.process-list::before {
    display: none;
}

@media (max-width: 1024px) {
    .process-list {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


/* =========================================
   Portfolio Gallery Component
========================================= */
.pf-wrap {
    background: #f8f9fa;
}

.pf-wrap--muted {
    background: #f8f9fa;
}

.btn-more-wrap--compact {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more.is-hidden,
.is-hidden {
    display: none !important;
}

.view-content__image {
    max-width: 100%;
    height: auto;
}

.view-message {
    margin-top: 20px;
}

.view-message--error {
    color: red;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pf-item img {
    transition: 0.5s;
}

.pf-item:hover img {
    transform: scale(1.1);
}

.pf-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    transform: translateY(0);
    opacity: 1;
    transition: 0.3s;
}

.pf-item:hover .pf-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.pf-cat {
    font-size: 14px;
    color: #3bdbff; /* Green */
    margin-bottom: 5px;
    font-weight: 600;
}

.pf-tit {
    font-size: 20px;
    font-weight: 700;
}

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


/* =========================================
   Partners Marquee Component
========================================= */
.partners-wrap {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    height: 50px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* =========================================
   Review Component
========================================= */
.review-wrap {
    background: #ffffff;
    position: relative;
}

.review-card {
    background: #ffffff;
    padding: 0;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
}

.review-customer-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-content {
    padding: 30px 30px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-quote {
    font-size: 40px;
    color: #01419a;
    margin-bottom: 20px;
    opacity: 0.3;
    line-height: 1;
    font-family: serif;
}

.review-txt {
    font-size: 17px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
}

.reviewer-initial {
    width: 45px;
    height: 45px;
    background: #333333;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviewer-info strong {
    display: block;
    font-size: 16px;
    color: #111111;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 13px;
    color: #888888;
}

.star-rating {
    color: #f1c40f;
    margin-bottom: 15px;
}


/* =========================================
   Track Record (Marquee) Component
========================================= */
.track-record {
    position: relative;
    color: white;
    padding: 120px 0;
    overflow: hidden;
}

.track-record:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/hero-commercial-space.webp");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.track-record .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.track-record .container {
    position: relative;
    z-index: 2;
}


.track-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 24px;
    opacity: 0.7;
}

.marquee {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.track-item {
    width: 160px; /* Fixed width for better consistency */
    height: 70px; /* Slightly increased height */
    padding: 15px; /* Adjust padding */
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}
.track-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
}

.track-item:hover {
    transform: scale(1.1);
}


/* =========================================
   FAQ Component
========================================= */
.faq-wrap {
    background: #ffffff;
    padding: 100px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #0043e0;
}

.faq-question {
    background: #ffffff;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    transition: 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #0043e0;
    color: #ffffff;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-answer-inner {
    padding: 25px 30px;
    color: #555555;
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer ul {
    margin-top: 15px;
    padding-left: 20px;
}

.faq-answer li {
    list-style: disc;
    margin-bottom: 8px;
    color: #666666;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    .faq-answer-inner {
        padding: 20px;
        font-size: 15px;
    }
}


/* =========================================
   CTA Component
========================================= */
.cta-section {
    position: relative;
    color: white;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.cta-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/hero-commercial-space.webp");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 64px;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-btn.phone {
    background: #ffffff;
    color: #002e97;
    border: 2px solid #ffffff;
}

.cta-btn.phone:hover {
    transform: translateY(-3px);
}

.cta-btn.consult {
    background: #0043e0;
    color: #ffffff;
}

.cta-btn.consult:hover {
    transform: translateY(-3px);
}

.cta-btn.kakao {
    background: #fee500;
    color: #3c1e1e;
}

.cta-btn.kakao i {
    font-size: 24px;
    color: #3c1e1e;
}

.cta-btn.kakao:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-btn {
        width: 100%;
        font-size: 16px;
        height: 56px;
    }
}


/* =========================================
   FAB Component
========================================= */
.fab-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s;
}

.fab-btn.kakao {
    background: #fee500;
    color: #3c1e1e;
}

.fab-btn.call {
    background: #0043e0;
    color: #ffffff;
}

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



@media (max-width: 768px) {
    .fab-wrap {
       right:10px;
    }
}


/* =========================================
   Refactoring Utilities (Inline Style Replacements)
========================================= */
.biz-content-container { position: relative; z-index: 2; }
.text-accent { color: #00d2ff !important; }
.text-white { color: #ffffff !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-30 { margin-top: 30px !important; }
.partners-title { text-align: center; margin-bottom: 30px; font-size: 18px; color: #999999; text-transform: uppercase; }
.btn-icon { font-size: 28px; }
.marquee-reverse { animation-direction: reverse; }

/* =========================================
   Philosophy Section
========================================= */
.philosophy-section {
    position: relative;
    padding: 100px 20px;
    color: #ffffff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-commercial-space.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.home-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.floating-kakao {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #fee500;
    color: #3b1e1e;
    border-radius: 10px;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-kakao:hover {
    transform: scale(1.05);
}

.floating-blog {
    display: none;
    position: fixed;
    bottom: 150px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #00c15d;
    color: #3b1e1e;
    border-radius: 10px;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.3s;
    text-decoration: none;
}

i.xi-naver {
    color: #fff;
}

.floating-blog:hover {
    transform: scale(1.05);
}

.mobile-floating-bar {
    display: none;
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 400px;
    height: 40px;
    z-index: 9998;
}

.mobile-floating-bar .m-float-inner {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 4px;
}

.mobile-floating-bar .m-float-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-radius: 26px;
    transition: 0.3s;
}

.mobile-floating-bar .phone {
    background: rgb(6, 45, 99);
}

.mobile-floating-bar .sms {
    background: #007ad6;
}

.mobile-floating-bar .m-float-btn:hover {
    opacity: 0.9;
}

.mobile-floating-bar .m-float-btn i {
    margin-right: 6px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .mobile-floating-bar {
        display: block;
    }

    .floating-kakao {
        display: flex;
    }

    .floating-blog {
        display: flex;
    }

    body:not(.has-cd-quick) {
        padding-bottom: 100px !important;
    }

    #quick {
        display: block !important;
    }
}

.philosophy-section .philosophy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.philosophy-section .philosophy-header {
    margin-bottom: 60px;
}

.philosophy-section .header-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #E9ECEF;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.philosophy-section .header-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 8px;
}

.philosophy-section .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.philosophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 40px;
}

.philosophy-item .item-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 36px;
    transition: 0.3s;
}

.philosophy-item:hover .item-icon {
    background-color: #01419a; /* Brand color */
    transform: translateY(-5px);
}

.philosophy-item .item-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.philosophy-item .item-desc {
    font-size: 16px;
    color: #E9ECEF;
    line-height: 1.6;
    word-break: keep-all;
}

.philosophy-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .philosophy-section {
        padding: 80px 20px;
    }
    .philosophy-section .header-subtitle {
        font-size: 20px;
    }
    .philosophy-section .header-title {
        font-size: 38px;
    }
    .philosophy-item .item-title {
        font-size: 22px;
    }
    .philosophy-item .item-desc {
        font-size: 15px;
    }
    .philosophy-item {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .philosophy-section {
        padding: 60px 15px;
    }
    .philosophy-section .philosophy-header {
        margin-bottom: 40px;
    }
    .philosophy-section .header-subtitle {
        font-size: 16px;
    }
    .philosophy-section .header-title {
        font-size: 28px;
    }
    .philosophy-section .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .philosophy-item {
        padding: 40px;
    }
    .philosophy-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .philosophy-item .item-title {
        font-size: 20px;
    }
    .philosophy-item .item-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
.philosophy-item .item-icon span {
        font-size: 36px;
    }

}

/* =========================================
   Cleaning Detective Main Draft
========================================= */
:root {
    --cd-ink: #0b1220;
    --cd-ink-soft: #27354a;
    --cd-navy: #07111f;
    --cd-navy-2: #111d3f;
    --cd-blue: #1f6fbf;
    --cd-cyan: #4ec6d8;
    --cd-steel: #edf3f7;
    --cd-line: #dce5ec;
    --cd-muted: #667589;
    --cd-coral: #4ec6d8;
}

body.main-draft {
    background: #ffffff;
    color: var(--cd-ink);
}

.main-draft .container {
    max-width: 1180px;
}

.main-draft #lnb > ul > li > a,
.main-draft #lnb > ul > li > ul > li > a {
    letter-spacing: 0;
}

.main-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #07111f;
    color: #ffffff;
    --hero-progress-duration: 6500ms;
  height: 840px;
}

.main-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.66) 42%, rgba(7, 17, 31, 0.14) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);
    pointer-events: none;
}

.main-hero__slides {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.main-hero__slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 1;
    transform: scale(1.025);
    transition:
        opacity 1.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 2.1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.main-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
    transform: translateX(0) scale(1);
}

.main-hero__slide.is-active::before {
    animation: mainHeroImageDrift var(--hero-progress-duration) linear both;
}

.main-hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 82% 35%, rgba(78, 198, 216, 0.18), transparent 24%),
        linear-gradient(108deg, #07111f 0%, #0a1830 46%, #182238 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-hero__slide--home::before {
    background-image:
        linear-gradient(90deg, rgba(7, 17, 31, 0.3), rgba(7, 17, 31, 0.1)),
        url("../images/m1.webp");
}

.main-hero__slide--site::before {
    background-image:
        linear-gradient(90deg, rgba(7, 17, 31, 0.34), rgba(7, 17, 31, 0.08)),
        url("../images/hero-commercial-space.webp");
}

.main-hero__slide--air::before {
    background-image:
        linear-gradient(90deg, rgba(7, 17, 31, 0.36), rgba(7, 17, 31, 0.08)),
        url("../images/hero-air-system-care.webp");
}

.main-hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 760px;
    padding-top: 82px;
}

.main-hero__copy {
    width: min(680px, 100%);
}

.main-hero__category,
.main-hero__title,
.main-hero__text {
    transition:
        opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
  color: #FFFFFF;
  font-size: 18px;
}

.main-hero__category {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    font-weight: 900;
}

.main-hero__title {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(44px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.main-hero__text {
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}

.main-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.main-hero__note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
}

.main-hero__pager {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 34px;
}

.main-hero__pager button {
    position: relative;
    overflow: hidden;
    width: 38px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    transition: width 0.3s ease, background 0.3s ease;
}

.main-hero__pager button.is-active {
    width: 68px;
    background: rgba(255, 255, 255, 0.35);
}

.main-hero__pager button.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    border-radius: inherit;
    background: #ffffff;
    animation: mainHeroDotFill var(--hero-progress-duration) linear both;
}

.main-hero.is-copy-leaving .main-hero__category,
.main-hero.is-copy-leaving .main-hero__title,
.main-hero.is-copy-leaving .main-hero__text {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
}

.main-hero.is-copy-entering .main-hero__category,
.main-hero.is-copy-entering .main-hero__title,
.main-hero.is-copy-entering .main-hero__text {
    animation: mainHeroCopyIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.main-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    height: 50px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.main-hero__button:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--cd-ink);
}

.main-hero__button--line {
    background: transparent;
}

.main-hero__machine {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 30vw;
    min-width: 360px;
    max-width: 520px;
    height: 390px;
    border-radius: 46% 46% 10% 10%;
    background:
        linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.14) 14% 16%, transparent 16% 30%, rgba(255, 255, 255, 0.16) 30% 32%, transparent 32% 46%, rgba(255, 255, 255, 0.14) 46% 48%, transparent 48% 62%, rgba(255, 255, 255, 0.12) 62% 64%, transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
    filter: blur(0.2px);
    opacity: 0.72;
}

.main-hero__machine,
.main-hero__beam,
.main-hero__grid,
.main-hero__flow,
.main-hero__ring {
    display: none;
}

.main-hero__slide--site .main-hero__machine {
    right: 8%;
    top: 16%;
    width: 34vw;
    height: 410px;
    border-radius: 30px;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 38px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.main-hero__slide--air .main-hero__machine {
    right: 12%;
    top: 22%;
    height: 310px;
    border-radius: 26px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 16%, transparent 16% 23%, rgba(255, 255, 255, 0.15) 23% 39%, transparent 39% 46%, rgba(255, 255, 255, 0.14) 46% 62%, transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
}

.main-hero__machine::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -18px;
    height: 120px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 44% 42%, rgba(78, 198, 216, 0.78), transparent 12%),
        repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 14px);
    opacity: 0.8;
}

.main-hero__beam {
    position: absolute;
    right: 7%;
    bottom: 16%;
    width: 46vw;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(78, 198, 216, 0.36), rgba(255, 255, 255, 0.38), transparent);
    transform: rotate(-8deg);
    filter: blur(10px);
}

.main-hero__grid,
.main-hero__flow {
    position: absolute;
    right: 16%;
    bottom: 15%;
    width: 360px;
    height: 180px;
    opacity: 0.5;
}

.main-hero__grid {
    background:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 38px 38px;
    transform: rotate(-6deg);
}

.main-hero__flow {
    border-radius: 999px;
    background:
        radial-gradient(circle at 42% 50%, rgba(78, 198, 216, 0.55), transparent 16%),
        repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px);
}

.main-hero__ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.main-hero__ring--large {
    right: 4%;
    bottom: 8%;
    width: 520px;
    height: 520px;
}

.main-hero__ring--small {
    right: 34%;
    top: 17%;
    width: 180px;
    height: 180px;
}

.main-hero__scroll {
    position: absolute;
    z-index: 4;
    bottom: 28px;
    left: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    transform: translateX(-50%);
    text-transform: uppercase;
}

.main-hero__scroll span {
    width: 18px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
}

@keyframes mainHeroDotFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes mainHeroCopyIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes mainHeroImageDrift {
    from {
        transform: scale(1.015);
    }
    to {
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .main-hero__slide.is-active::before {
        animation: none;
    }

    .main-hero__slide {
        transform: none;
        transition: opacity 0.45s ease;
    }

    .main-hero__category,
    .main-hero__title,
    .main-hero__text {
        transition: opacity 0.28s ease;
    }

    .main-hero.is-copy-leaving .main-hero__category,
    .main-hero.is-copy-leaving .main-hero__title,
    .main-hero.is-copy-leaving .main-hero__text {
        opacity: 0;
        transform: none;
        filter: none;
    }

    .main-hero.is-copy-entering .main-hero__category,
    .main-hero.is-copy-entering .main-hero__title,
    .main-hero.is-copy-entering .main-hero__text {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--cd-coral);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.need-story {
    padding: 112px 0 108px;
    background: #ffffff;
}

.need-story__head {
    margin: 0 auto 58px;
    text-align: center;
}

.need-story__head h2 {
    margin: 0;
    color: var(--cd-ink);
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 900;
    line-height: 1.28;
    overflow-wrap: anywhere;
}

.need-story__list {
    display: grid;
    gap: 34px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.need-story__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    overflow: hidden;
    border-radius: 42px;
    --need-image: url("../images/checkpoint-cleaning-scope.webp");
    --need-position: center;
    background: #0c1e31;
    box-shadow: 0 24px 60px rgba(15, 35, 55, 0.12);
    isolation: isolate;
}

.need-story__item::before,
.need-story__item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.need-story__item::before {
    background:
        linear-gradient(180deg, rgba(4, 11, 20, 0.18), rgba(5, 17, 31, 0.48)),
        var(--need-image);
    background-position: center, var(--need-position);
    background-size: cover, cover;
    transform: scale(1.02);
}

.need-story__item::after {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 14, 27, 0.5), rgba(4, 14, 27, 0.48) 48%, rgba(4, 14, 27, 0.68)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(4, 14, 27, 0.2) 54%, rgba(4, 14, 27, 0.6));
}

.need-story__item--scope::before {
    --need-image: url("../images/checkpoint-cleaning-scope.webp");
    --need-position: center;
}

.need-story__item--hidden::before {
    --need-image: url("../images/checkpoint-price-quality.webp");
    --need-position: center;
}

.need-story__item--after::before {
    --need-image: url("../images/checkpoint-direct-team.webp");
    --need-position: center;
}

.need-story__body {
    width: min(760px, 84%);
    padding: 52px 24px;
    text-align: center;
    color: #ffffff;
}

.need-story__body h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(28px, 3.1vw, 34px);
    font-weight: 900;
    line-height: 1.24;
}

.need-story__body p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.72;
}

.main-service-section {
    background: #ffffff;
    padding: 110px 0;
}

.main-service-section .section-head.text-center {
    text-align: center;
}
.main-service-section .section-head.text-center .section-eyebrow {
    margin-bottom: 12px;
}

.service-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 410px;
    gap: 20px;
}

.service-tiles__item {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-tiles__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.14), rgba(7, 17, 31, 0.82));
}

.service-tiles__visual {
    position: absolute;
    inset: 0;
    display: block;
    transition: transform 0.7s ease;
}

.service-tiles__visual--home {
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.04), rgba(7, 17, 31, 0.46)),
        url("../images/service-home-cleaning.webp") center / cover no-repeat;
}

.service-tiles__visual--site {
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.52)),
        url("../images/service-commercial-cleaning.webp") center / cover no-repeat;
}

.service-tiles__visual--air {
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.5)),
        url("../images/service-aircon-cleaning.webp") center / cover no-repeat;
}

.service-tiles__item:hover .service-tiles__visual {
    transform: scale(1.06);
}

.service-tiles__content {
    position: absolute;
    z-index: 2;
    left: 54px;
    right: 44px;
    bottom: 52px;
}

.service-tiles__content strong {
    display: block;
    margin-bottom: 10px;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.2;
}

.service-tiles__content em {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-style: normal;
    line-height: 1.6;
}

.service-detail-panel {
    position: relative;
    padding: 110px 0;
    background: #0b1421 url('../images/bg-process-dark.png') no-repeat center/cover;
    overflow: hidden;
}

.service-detail-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(31, 111, 191, 0.15), transparent 60%);
    pointer-events: none;
}

.service-detail-panel__head {
  display: flex;

    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
    gap: 14px;
  align-items: center;
    margin-bottom: 54px;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.service-detail-panel__head h2,
.section-title-block h2,
.process-band__content h2 {
    margin: 0;
    color: var(--cd-ink);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.26;
}

.service-detail-panel__head p,
.section-title-block p,
.process-band__content p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 17px;
    line-height: 1.78;
}

/* Dark Theme Overrides for Service Detail Panel Head */
.service-detail-panel__head h2 {
    color: #ffffff;
}

.service-detail-panel__head p {
    color: rgba(255, 255, 255, 0.72);
}

.service-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    counter-reset: service-process;
}

.service-process__card {
    position: relative;
    min-height: 318px;
    padding: 30px 24px 28px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    isolation: isolate;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.service-process__card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-process__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.05), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 52%);
}

.service-process__card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    z-index: -1;
    width: 142px;
    height: 142px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.service-process__card:nth-child(2)::before {
    background:
        repeating-linear-gradient(90deg, rgba(31, 111, 191, 0.04) 0 1px, transparent 1px 24px),
        radial-gradient(circle at 22% 84%, rgba(31, 111, 191, 0.15), transparent 40%);
}

.service-process__card:nth-child(3)::before {
    background:
        radial-gradient(circle at 75% 22%, rgba(78, 198, 216, 0.1), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
}

.service-process__card:nth-child(4)::before {
    background:
        repeating-radial-gradient(circle at 78% 24%, rgba(31, 111, 191, 0.06) 0 2px, transparent 2px 16px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.service-process__card:nth-child(5) {
    background: rgba(31, 111, 191, 0.15);
    border-color: rgba(78, 198, 216, 0.3);
}

.service-process__card:nth-child(5)::before {
    background:
        radial-gradient(circle at 74% 24%, rgba(78, 198, 216, 0.2), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
}

.service-process__card:nth-child(5) .service-process__num,
.service-process__card:nth-child(5) strong {
    color: #ffffff;
}

.service-process__card:nth-child(5) p {
    color: rgba(255, 255, 255, 0.72);
}

.service-process__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 54px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.05);
}

.service-process__card strong {
    display: block;
    min-height: 58px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.3;
}

.service-process__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.72;
}

.service-detail-panel__cta {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 34px;
    padding: 28px 32px;
    border: 1px solid var(--cd-line);
    background: #ffffff;
}

.service-detail-panel__cta p {
    max-width: 760px;
    margin: 0;
    color: var(--cd-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.content-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 22px;
    border: 1px solid var(--cd-ink);
    color: var(--cd-ink);
    font-size: 13px;
    font-weight: 900;
}

.content-button:hover {
    background: var(--cd-ink);
    color: #ffffff;
}

.trust-section {
    padding: 116px 0;
    background: #f6f6f6;
}

.section-title-block {
    max-width: 700px;
    margin-bottom: 54px;
}

.section-title-block--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.trust-section__grid {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.trust-section__card {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    align-items: center;
    gap: clamp(42px, 6vw, 86px);
    min-height: 430px;
    padding: 0;
    border: 0;
    background: transparent;
}

.trust-section__card:nth-child(even) {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
}

.trust-section__card:nth-child(even) .trust-section__media {
    order: 2;
}

.trust-section__card:nth-child(even) .trust-section__body {
    order: 1;
}

.trust-section__media {
    min-height: 430px;
    overflow: hidden;
    border-radius: 25px;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.34)),
        var(--trust-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.trust-section__card--direct {
    --trust-image: url("../images/trust-consulting-schedule.webp");
}

.trust-section__card--field {
    --trust-image: url("../images/trust-field-inspection.webp");
}

.trust-section__card--care {
    --trust-image: url("../images/steam.webp");
}

.trust-section__card--company {
    --trust-image: url("../images/trust-business-info.webp");
}

.trust-section__body {
    max-width: 520px;
}

.trust-section__eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: #00a9d6;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
}

.trust-section__card h3 {
    margin: 0 0 28px;
    color: #020813;
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: 0;
}

.trust-section__card p {
    margin: 0;
  color: #4A4A4A;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.85;
}

.process-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 110px max(20px, calc((100vw - 1320px) / 2));
    background:
        radial-gradient(circle at 18% 20%, rgba(39, 140, 153, 0.18), transparent 28%),
        radial-gradient(circle at 84% 72%, rgba(18, 88, 157, 0.22), transparent 28%),
        linear-gradient(135deg, #07111f 0%, #0a1c28 52%, #051013 100%);
}

.process-band__faq,
.process-band__content {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.process-band__faq {
    padding: 46px 42px;
    background: rgba(255, 255, 255, 0.96);
}

.process-faq__head h2 {
    margin: 12px 0 12px;
    color: var(--cd-ink);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.process-faq__head p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 15px;
    line-height: 1.7;
}

.process-faq__list {
    margin-top: 28px;
    border-top: 1px solid var(--cd-line);
}

.process-faq__item {
    border-bottom: 1px solid var(--cd-line);
}

.process-faq__item summary {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr 30px;
    align-items: center;
    gap: 16px;
    min-height: 68px;
    color: var(--cd-ink);
    cursor: pointer;
    list-style: none;
}

.process-faq__item summary::-webkit-details-marker {
    display: none;
}

.process-faq__item summary::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    transition: 0.25s;
}

.process-faq__item[open] summary::after {
    content: "-";
    color: #000000;
}

.process-faq__item summary span {
    color: #aab6c4;
    font-size: 15px;
    font-weight: 900;
}

.process-faq__item summary strong {
    color: var(--cd-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.45;
}

.process-faq__item p {
    margin: -2px 46px 22px 58px;
    color: var(--cd-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* FAQ 아코디언 부드러운 열림 애니메이션 */
.process-faq__item[open] summary ~ * {
    animation: faqFadeSlide 0.35s ease-out forwards;
}

@keyframes faqFadeSlide {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-band__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 46px min(5vw, 66px);
    background:
        linear-gradient(135deg, rgba(10, 32, 46, 0.96), rgba(8, 17, 31, 0.96)),
        var(--cd-navy-2);
    color: #ffffff;
}

.process-band__content h2 {
    margin: 12px 0 12px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.process-band__content p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.reservation-board {
    margin: 34px 0 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.reservation-board__head,
.reservation-board__list li {
    display: grid;
    grid-template-columns: 1.12fr 1.12fr 0.82fr 0.95fr;
    gap: 12px;
    align-items: center;
}

.reservation-board__head {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 800;
}

.reservation-board__viewport {
    height: 318px;
    overflow: hidden;
}

.reservation-board__list {
    display: grid;
    gap: 0;
    animation: reservationRoll 18s linear infinite;
}

.reservation-board__list li {
    min-height: 53px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.reservation-board__list strong {
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(31, 185, 214, 0.16);
    color: #8cecff;
    font-size: 12px;
    font-weight: 900;
}

.reservation-board:hover .reservation-board__list {
    animation-play-state: paused;
}

@keyframes reservationRoll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.content-button--light {
margin:0 auto;
    width: fit-content;
    border-color: rgba(255, 255, 255, 0.68);
    color: #ffffff;
}

.content-button--light:hover {
    background: #ffffff;
    color: var(--cd-navy-2);
}

.customer-check {
    padding: 110px 0;
    background: #ffffff;
}

.customer-check__list {
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid var(--cd-line);
}

.customer-check__item {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr 110px;
    align-items: center;
    gap: 26px;
    min-height: 118px;
    border-bottom: 1px solid var(--cd-line);
}

.customer-check__item > span {
    color: #bcc5cf;
    font-size: 34px;
    font-weight: 900;
}

.customer-check__item h3 {
    margin: 0 0 6px;
    color: var(--cd-ink);
    font-size: 19px;
    font-weight: 900;
}

.customer-check__item p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 14px;
    line-height: 1.6;
}

.customer-check__item em {
    display: block;
    height: 72px;
    background:
        radial-gradient(circle at 54% 44%, rgba(78, 198, 216, 0.4), transparent 18%),
        linear-gradient(135deg, #e5eef5, #f8fafc);
}

.main-faq {
    padding: 110px 0;
    background: #ffffff;
}

.main-faq__list {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--cd-line);
}

.main-faq__item {
    border-bottom: 1px solid var(--cd-line);
}

.main-faq__item summary {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr 32px;
    align-items: center;
    gap: 20px;
    min-height: 86px;
    color: var(--cd-ink);
    cursor: pointer;
    list-style: none;
}

.main-faq__item summary::-webkit-details-marker {
    display: none;
}

.main-faq__item summary::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--cd-line);
    border-radius: 50%;
    color: var(--cd-blue);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: 0.25s;
}

.main-faq__item[open] summary::after {
    content: "-";
    border-color: var(--cd-blue);
    background: var(--cd-blue);
    color: #ffffff;
}

.main-faq__item summary span {
    color: #b8c2cf;
    font-size: 18px;
    font-weight: 900;
}

.main-faq__item summary strong {
    color: var(--cd-ink);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.45;
}

.main-faq__item p {
    max-width: 720px;
    margin: -4px 64px 28px 84px;
    color: var(--cd-muted);
    font-size: 16px;
    line-height: 1.8;
}

.work-gallery {
    padding: 108px 0;
    background: #ffffff;
}

.work-gallery__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    text-align: center;
}


.work-gallery__more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 152px;
margin:0 auto;
    height: 44px;
    border: 1px solid var(--cd-line);
    border-radius: 999px;
    color: var(--cd-ink);
    font-size: 18px;
    font-weight: 800;
    transition: 0.25s;
}

.work-gallery__more:hover {
    border-color: var(--cd-blue);
    background: var(--cd-blue);
    color: #ffffff;
}

.work-gallery__marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin-bottom: 60px;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.work-gallery__marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track .work-gallery-card {
    width: 380px;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.work-gallery-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    color: inherit;
    transition: transform 0.3s ease;
}

.work-gallery-card:hover {
    transform: translateY(-6px);
}

.work-gallery-card__thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background:
        radial-gradient(circle at 72% 28%, rgba(45, 210, 228, 0.28), transparent 22%),
        linear-gradient(135deg, #eef3f7, #cfd9e1 52%, #708597);
}

.work-gallery-card__thumbnail--home {
    background-image: linear-gradient(135deg, rgba(31, 111, 191, 0.14), rgba(78, 198, 216, 0.12));
    background-position: center;
    background-size: cover;
}

.work-gallery-card__thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 46px),
        linear-gradient(0deg, rgba(5, 16, 28, 0.18), transparent 42%);
    pointer-events: none;
}

.work-gallery-card__thumbnail--office {
    background-image: linear-gradient(135deg, rgba(12, 30, 49, 0.08), rgba(31, 111, 191, 0.18));
    background-position: center;
    background-size: cover;
}

.work-gallery-card__thumbnail--air {
    background-image: linear-gradient(135deg, rgba(78, 198, 216, 0.2), rgba(12, 30, 49, 0.12));
    background-position: center;
    background-size: cover;
}

.work-gallery-card__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.work-gallery-card:hover .work-gallery-card__thumbnail img {
    transform: scale(1.05);
}

.work-gallery-card__info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.work-gallery-card__badge {
    color: var(--cd-blue);
    font-weight: 900;
}

.work-gallery-card__date {
    color: #999999;
    font-weight: 600;
}

.work-gallery-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #212529;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.request-cta {
    position: relative;
    overflow: hidden;
    padding: 118px 0 116px;
    background:
        radial-gradient(circle at 74% 38%, rgba(39, 140, 153, 0.18), transparent 28%),
        radial-gradient(circle at 28% 58%, rgba(31, 111, 191, 0.12), transparent 24%),
        linear-gradient(90deg, #030506 0%, #061013 46%, #081f24 100%);
    color: #ffffff;
    text-align: center;
}

.request-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 120px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 120px);
    opacity: 0.55;
    pointer-events: none;
}

.request-cta__inner {
    position: relative;
    z-index: 2;
}

.request-cta__label {
    display: block;
    margin-bottom: 20px;
    color: #1fd5ff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
}

.request-cta h2 {
    margin: 0;
    color: #ffffff;
  font-size: 46px;
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: 0;
}

.request-cta p {
    margin: 20px auto;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

.request-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.request-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
}

.request-cta__button--primary {
    background: #ffffff;
    color: #041115;
    box-shadow: 0 18px 44px rgba(0, 213, 255, 0.14);
}

.request-cta__button--primary:hover {
    background: #1fd5ff;
    color: #041115;
}

.request-cta__button--line {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.request-cta__button--line:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.request-cta__quick {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #20c3e8;
    color: #041115;
    font-size: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.request-cta__quick:hover {
    transform: translateY(-4px);
    background: #ffffff;
}



.main-draft .fab-wrap {
    display: none;
    right: 24px;
    bottom: 28px;
}

.main-draft .fab-btn {
    width: 54px;
    height: 54px;
    font-size: 24px;
}

@media (max-width: 1180px) {
    .main-draft .header-call {
        display: none;
    }

    .service-detail-panel__head {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

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

    .service-process__card {
        min-height: 280px;
    }
}

@media (max-width: 1024px) {
    .main-draft .header,
    .main-draft .header.menu-open,
    .main-draft .header .wrap {
        height: 72px;
    }

    .main-draft .logo a {
        height: 72px;
    }

    .main-draft .header .logo {
        width: 164px;
        min-width: 164px;
    }

    .main-hero,
    .main-hero__inner {
        min-height: 680px;
    }

    .main-hero__machine {
        right: -110px;
        opacity: 0.36;
    }

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

    .service-tiles,
    .main-draft .footer-sitemap__grid {
        grid-template-columns: 1fr;
    }

    .trust-section__grid {
        gap: 52px;
    }

    .trust-section__card,
    .trust-section__card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: 0;
    }

    .trust-section__card:nth-child(even) .trust-section__media,
    .trust-section__card:nth-child(even) .trust-section__body {
        order: initial;
    }

    .trust-section__media {
        min-height: 340px;
    }

    .trust-section__body {
        max-width: 720px;
    }

    .service-tiles__item {
        min-height: 310px;
    }

    .process-band {
        grid-template-columns: 1fr;
        padding: 90px 24px;
    }

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

    .main-draft .footer-company__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-draft .container {
        padding: 0 20px;
    }

    .main-hero__slide::before {
        background-position: 65% center !important;
    }

    .main-hero,
    .main-hero__inner {
        min-height: 620px;
    }

    .main-hero__inner {
        align-items: flex-end;
        padding-bottom: 92px;
    }

    .main-hero__title {
        font-size: 40px;
    }

    .main-hero__category {
        font-size: 14px;
    }

    .main-hero__text {
        font-size: 16px;
    }

    .main-hero__note {
        max-width: 260px;
        font-size: 13px;
    }

    .main-hero__actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 260px;
    }

    .main-hero__button {
        width: 100%;
    }

    .main-hero__pager {
        max-width: 260px;
        flex-wrap: wrap;
    }

    .main-hero__scroll {
        display: none;
    }

    .need-story,
    .service-detail-panel,
    .trust-section,
    .customer-check,
    .main-faq,
    .work-gallery {
        padding: 76px 0;
    }

    .need-story__head {
        margin-bottom: 34px;
    }

    .need-story__list {
        gap: 22px;
    }

    .need-story__item {
        min-height: 230px;
        border-radius: 28px;
    }

    .need-story__body {
        width: 100%;
        padding: 42px 24px;
    }

    .need-story__body h3 {
        font-size: 27px;
    }

    .need-story__body p {
        font-size: 15px;
    }

    .service-tiles__content {
        left: 28px;
        right: 28px;
        bottom: 32px;
    }

    .service-tiles__content strong {
        font-size: 25px;
    }

    .service-detail-panel__head {
        margin-bottom: 34px;
    }

    .service-detail-panel__head h2 {
        font-size: 31px;
    }

    .service-detail-panel__head p {
        font-size: 15px;
    }

    .service-process {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-process__card {
        min-height: 0;
        padding: 26px 22px;
    }

    .service-process__num {
        margin-bottom: 26px;
    }

    .service-process__card strong {
        min-height: 0;
        font-size: 22px;
    }

    .service-detail-panel__cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
    }

    .service-detail-panel__cta .content-button {
        width: 100%;
    }

    .trust-section__grid {
        gap: 46px;
    }

    .trust-section__media {
        min-height: 260px;
        border-radius: 0 30px 0 30px;
    }

    .trust-section__card h3 {
        margin-bottom: 18px;
        font-size: 30px;
    }

    .trust-section__card p {
        font-size: 15px;
        line-height: 1.75;
    }

    .process-band {
        padding: 76px 20px;
        gap: 18px;
    }

    .process-band__faq,
    .process-band__content {
        border-radius: 22px;
    }

    .process-band__faq {
        padding: 34px 22px;
    }

    .process-faq__head h2 {
        font-size: 28px;
    }

    .process-faq__item summary {
        grid-template-columns: 1fr 28px;
        gap: 12px;
        min-height: auto;
        padding: 18px 0;
    }

    .process-faq__item summary span {
        display: none;
    }

    .process-faq__item summary strong {
        font-size: 15px;
        line-height: 1.45;
    }

    .process-faq__item p {
        margin: 0 28px 20px 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .process-band__content {
        padding: 46px 22px;
    }

    .reservation-board__head {
        display: none;
    }

    .reservation-board__viewport {
        height: 330px;
    }

    .reservation-board__list li {
        grid-template-columns: 1fr 1fr;
        min-height: 92px;
        padding: 14px 16px;
        gap: 8px 14px;
    }

    .reservation-board__list strong {
        justify-self: start;
    }

    .customer-check__item {
        grid-template-columns: 54px 1fr;
        gap: 14px;
        padding: 24px 0;
    }

    .customer-check__item em {
        display: none;
    }

    .customer-check__item > span {
        font-size: 26px;
    }

    .main-faq__item summary {
        grid-template-columns: 42px 1fr 30px;
        gap: 12px;
        min-height: 74px;
    }

    .main-faq__item summary span {
        font-size: 15px;
    }

    .main-faq__item summary strong {
        font-size: 17px;
    }

    .main-faq__item p {
        margin: -2px 42px 24px 54px;
        font-size: 15px;
    }

    .work-gallery__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 30px;
    }

    .work-gallery__title {
        font-size: 28px;
    }

    .work-gallery__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .work-gallery-card__thumbnail {
        margin-bottom: 15px;
    }

    .work-gallery-card__title {
        font-size: 17px;
    }

    .request-cta {
        padding: 82px 0 90px;
    }

    .request-cta h2 {
        font-size: 36px;
    }

    .request-cta p {
        margin: 24px auto 32px;
        font-size: 15px;
    }

    .request-cta p br {
        display: none;
    }

    .request-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .request-cta__button {
        width: min(100%, 260px);
    }

    .request-cta__quick {
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .main-hero__title {
        font-size: 34px;
    }

    .service-detail-panel__head h2,
    .section-title-block h2,
    .process-band__content h2 {
        font-size: 27px;
    }

    .need-story__body h3 {
        font-size: 22px;
        overflow-wrap: anywhere;
    }

    .need-story__head h2 {
        font-size: 22px;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .need-story__body p {
        font-size: 14px;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .service-process__card strong {
        font-size: 20px;
    }

    .service-detail-panel__cta {
        padding: 22px 20px;
    }
}
