/* public/css/style.css */

/* Reset & Base */
:root {
    --primary-color: #00EB88;
    --color-primary: #00EB88;
    --text-color: #222;
    --bg-color: #111;
    --white: #fff;
    --border-color: rgba(0,0,0,0.1);
    --color-border: rgba(0,0,0,0.1);
    --color-text-muted: #666;
    --color-bg-card: #f5f5f5;
}

body {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

figure { margin: 0; }

/* Header Layout */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header.scrolled,
.site-header.menu-open {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 90rem; /* Legacy compatible */
    margin: 0 auto;
    padding: 0 2rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 30px;
    width: auto;
}
.logo-black { display: none; }
.scrolled .logo-white, .menu-open .logo-white { display: none; }
.scrolled .logo-black, .menu-open .logo-black { display: block; }


/* Desktop Navigation */
.pc-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.gnb-list {
    display: flex;
    height: 100%;
    gap: 4rem;
}

.gnb-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.gnb-link {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.scrolled .gnb-link, .menu-open .gnb-link {
    color: #222;
}

/* Subpage Header - Always Dark */
body.subpage .site-header {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.subpage .logo-white { display: none !important; }
body.subpage .logo-black { display: block !important; }

body.subpage .gnb-link {
    color: #222 !important;
}

body.subpage .menu-btn span {
    background: #000 !important;
}

body.subpage .site-header.scrolled {
    background: #fff;
}

.arrow-icon {
    margin-left: 0.5rem;
    height: 12px;
}

/* Grand Menu (Mega Menu) */
.grand-menu-wrapper {
    position: absolute;
    top: 100%; /* Below header */
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 3rem 0;
    
    /* Animation */
    display: none; /* Hidden by default */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.menu-open .grand-menu-wrapper {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.grand-menu-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.grand-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 280px; /* 3 Columns + Contact Banner */
    gap: 2rem;
}

/* Exclude columns with no items (like AEO, Blog) if standard */
/* However, user wants "All at once". We will show columns that have items. */
.grand-col {
    padding: 0 1rem;
    border-right: 1px solid #f0f0f0;
}
.grand-col:last-child { border-right: none; }

.col-header a {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    display: inline-block;
    border-bottom: 2px solid transparent;
}
.col-header a:hover {
    border-bottom-color: var(--primary-color);
}

.col-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.col-item a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: transform 0.2s;
}

.col-item a:hover {
    transform: translateX(5px);
}

.col-item a:hover .item-title {
    color: var(--primary-color);
    text-decoration: underline;
}

.icon-figure {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.icon-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-title {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

/* Contact Banner in Grand Menu */
.grand-col.type-contact-banner {
    border-right: none;
    padding: 0;
}

.contact-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.banner-content {
    color: #fff;
}

.banner-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.banner-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #000;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #fff;
    color: #000;
    transform: translateX(5px);
}

.banner-btn svg {
    transition: transform 0.3s ease;
}

.banner-btn:hover svg {
    transform: translateX(3px);
}

.banner-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.info-item {
    margin-bottom: 0.75rem;
}

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

.info-label {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.tel-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 235, 136, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.call-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.call-btn svg {
    flex-shrink: 0;
}

/* Mobile Utils */
.mobile-utils {
    display: none; /* Hidden on PC */
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mo-header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1px solid #eee;
}

.menu-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
}
.menu-btn span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}
.scrolled .menu-btn span, .menu-open .menu-btn span {
    background: #000;
}
.menu-btn.active {
    background: url('/public/img/menu_close.png') no-repeat center/contain;
}
.menu-btn.active span { display: none; }


.mo-inner {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.mo-gnb-item {
    border-bottom: 1px solid #f5f5f5;
}

.mo-gnb-link {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mo-sub-menu {
    display: none;
    padding-bottom: 1.5rem;
    background: #fdfdfd;
}

.mo-sub-list li a {
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #666;
}
.mo-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


/* Responsive - Header */
@media (max-width: 991px) {
    .pc-nav, .grand-menu-wrapper {
        display: none !important;
    }
    .mobile-utils {
        display: block;
    }
    .header-inner {
        padding: 0 1.5rem;
    }

    /* 메인페이지 모바일: 흰색 로고/메뉴 유지 */
    .logo-white { display: block; }
    .logo-black { display: none; }
    .menu-btn span { background: #fff; }

    /* 서브페이지 모바일: 검은색 로고/메뉴 */
    body.subpage .logo-white { display: none !important; }
    body.subpage .logo-black { display: block !important; }
    body.subpage .menu-btn span { background: #000 !important; }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    padding: 140px 2rem 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 235, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-text .line1,
.hero-text .line2 {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00c9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-desc .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background: #00c474;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 235, 136, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* SEO Search Box */
.seo-search-box {
    max-width: 500px;
    margin: 0 auto;
}

.seo-search-form {
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.seo-search-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.seo-search-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-btn {
    background: var(--primary-color);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #00c474;
}

.search-btn svg {
    color: #000;
}

/* ========================================
   COMMON SECTION STYLES
======================================== */
.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.section-footer .btn-outline {
    color: #222;
    border-color: #ddd;
}

.section-footer .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ========================================
   PORTFOLIO SECTION
======================================== */
.portfolio-section {
    padding: 100px 0;
    background: #fff;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: #f5f5f5;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #eee;
}

.tab-btn.active {
    background: var(--primary-color);
    color: #000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.portfolio-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.portfolio-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.8rem;
    color: #222;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.8rem;
    color: #888;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .seo-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #222;
}

.services-desc {
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-card .card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #3a1f7a;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.card-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #00a85a;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 1;
}

.service-card .card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========================================
   BLOG SECTION
======================================== */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.blog-card a {
    display: block;
}

.blog-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   CLIENTS SECTION
======================================== */
.clients-section {
    padding: 100px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
    margin-top: 2rem;
}

.marquee-track {
    display: flex;
    animation: marquee 60s linear infinite;
    width: max-content;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 2rem;
}

.marquee-item img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

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

/* ========================================
   FOOTER
======================================== */
.nxt-footer {
    background: #111;
    color: #fff;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.cta-link:hover {
    transform: translateX(5px);
}

/* Footer Inner */
.nxt-footer .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 2rem 40px;
}

/* Footer Nav */
.footer-nav {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* Footer Info */
.nxt-footer .footer-info {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.nxt-footer .footer-info strong {
    color: rgba(255,255,255,0.7);
    margin-right: 0.5rem;
}

.nxt-footer .footer-info a {
    color: inherit;
    display: inline;
}

.nxt-footer .footer-info a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.nxt-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-sns {
    display: flex;
    gap: 1.5rem;
}

.footer-sns a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-sns a:hover {
    color: var(--primary-color);
}

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   RESPONSIVE - Main Page
======================================== */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 140px 1.5rem 80px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .portfolio-section,
    .services-section,
    .blog-section,
    .clients-section {
        padding: 60px 0;
    }

    .portfolio-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Utility */
.no-scroll {
    overflow: hidden;
}

/* ========================================
   FLOATING QUICK CONTACT BUTTONS
======================================== */
.simDeinqBtn {
    display: flex;
    cursor: pointer;
    position: fixed;
    bottom: 9rem;
    right: 2rem;
    z-index: 999;
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simDeinqBtn:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
}

.simDeinqBtn img {
    height: 1.8rem;
}

.simDeinqBtn:hover span {
    display: inline-block;
}

.simDeinqBtn span {
    display: none;
    left: -8rem;
    color: #666;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: absolute;
    white-space: nowrap;
}

.siminqBtn {
    box-shadow: 0px 0px 20px 0px rgba(0, 235, 136, 0.2);
    display: flex;
    cursor: pointer;
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    z-index: 10001;
    border-radius: 50%;
    background: var(--primary-color);
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.siminqBtn:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 25px 0px rgba(0, 235, 136, 0.3);
}

.siminqBtn .icon-default {
    height: 1.8rem;
    filter: brightness(0);
    display: block;
}

.siminqBtn .icon-close {
    display: none;
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    line-height: 1;
}

.siminqBtn.active .icon-default {
    display: none;
}

.siminqBtn.active .icon-close {
    display: block;
}

.siminqBtn.active {
    box-shadow: 0 0 20px rgba(0, 235, 136, 0.6),
                0 0 40px rgba(0, 235, 136, 0.4),
                0 0 60px rgba(0, 235, 136, 0.2);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 235, 136, 0.6),
                    0 0 40px rgba(0, 235, 136, 0.4),
                    0 0 60px rgba(0, 235, 136, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 235, 136, 0.8),
                    0 0 50px rgba(0, 235, 136, 0.5),
                    0 0 75px rgba(0, 235, 136, 0.3);
    }
}

.siminqBtn:hover .text-label {
    display: inline-block;
}

.siminqBtn .text-label {
    display: none;
    left: -8rem;
    color: #666;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: absolute;
    white-space: nowrap;
}

.siminqBtn.active .text-label {
    display: none !important;
}

/* Quick Contact Popup - V1 Style */
.siminqWrap {
    overflow: hidden;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.siminqCont {
    position: fixed;
    bottom: 10rem;
    right: 2rem;
    width: 28rem;
    padding: 2rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.siminqTitle {
    gap: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 1.5rem 0;
}

.siminqTitle span {
    color: #000;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.8rem;
}

.siminqTitle p {
    margin: 0;
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4rem;
}

.siminqContInner {
    position: relative;
    width: 100%;
}

.simibtnBox {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin: 0 0 1.2rem 0;
}

.simibtn {
    flex: 1;
}

.simibtn input[type="radio"] {
    display: none;
}

.simibtn label {
    display: flex;
    width: 100%;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2rem;
    border-radius: 50px;
    background: #000;
    transition: all 0.2s ease;
}

.simibtn input[type="radio"]:checked + label {
    color: #000;
    background: var(--primary-color);
}

.siminputBox {
    gap: 0.4rem;
    display: flex;
    flex-direction: column;
}

.siminputBox input {
    height: 3.2rem;
    padding: 0.6rem 1.4rem;
    width: 100%;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.60);
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 2rem;
}

.siminputBox input:focus {
    border: 1px solid var(--primary-color);
    outline: none;
    background: #fff;
}

.siminputBox input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
    font-weight: 400;
}

.simAgree_checkBox {
    margin: 0.6rem 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.simAgbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.simAgbox input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.sim_agreetext {
    font-size: 0.85rem;
    color: #000;
    cursor: pointer;
    line-height: 1.6rem;
}

.agree_checkViewMore {
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
}

.siminSuBtnBox {
    width: 100%;
    margin: 0;
}

.siminSuBtn {
    width: 100%;
    display: flex;
    height: 3.4rem;
    padding: 1rem 1.6rem;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4rem;
    border-radius: 50px;
    border: 1px solid #000;
    background: #FFF;
    transition: all 0.2s ease;
}

.siminSuBtn:hover {
    background: var(--primary-color);
}

.simlinkBtnBox {
    position: relative;
    margin: 1.4rem 0 0 0;
}

.simlinkBtnBox ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: -3px;
    list-style-type: none;
    justify-content: center;
}

.simlinkBtnBox li {
    list-style: none;
    flex: 0 0 calc(50% - 6px);
    margin: 3px;
    box-sizing: border-box;
}

.simlinkBtnBox li a {
    color: #000;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.4rem;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    display: flex;
    border-radius: 0.7rem;
    background: #FFF;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.2s ease;
}

.simlinkBtnBox li a img {
    height: 1.5rem;
    width: auto;
}

.simlinkBtnBox li a:hover {
    text-decoration: underline;
}

/* Floating Buttons - Responsive */
@media (max-width: 1500px) {
    .simDeinqBtn {
        bottom: 12rem;
        right: 2rem;
    }

    .siminqBtn {
        bottom: 4rem;
        right: 2rem;
    }
}

@media (max-width: 991px) {
    .simDeinqBtn {
        width: 5.5rem;
        height: 5.5rem;
        bottom: 9rem;
        right: 1.5rem;
    }

    .simDeinqBtn img {
        height: 2.4rem;
    }

    .simDeinqBtn span,
    .siminqBtn span {
        display: none !important;
    }

    .siminqBtn {
        width: 5.5rem;
        height: 5.5rem;
        bottom: 2.5rem;
        right: 1.5rem;
    }

    .siminqBtn .icon-default {
        height: 2.4rem;
    }

    .siminqCont {
        padding: 2rem;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .simDeinqBtn {
        width: 5rem;
        height: 5rem;
        bottom: 8rem;
        right: 1rem;
    }

    .simDeinqBtn img {
        height: 2rem;
    }

    .siminqBtn {
        width: 5rem;
        height: 5rem;
        bottom: 2rem;
        right: 1rem;
    }

    .siminqBtn .icon-default {
        height: 2rem;
    }

    .siminqBtn .icon-close {
        font-size: 1.6rem;
    }

    .siminqCont {
        width: 95%;
        padding: 1.5rem;
        border-radius: 16px;
    }

    .siminqTitle span {
        font-size: 1.4rem;
    }

    .simibtnBox {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Privacy Policy Popup */
.privacyWrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10002;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.privacyWrap.show {
    display: block;
}

.privacyPopUp {
    width: 100%;
    max-width: 65rem;
    padding: 3rem 1.5rem 0;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.privacyPopUpClose {
    position: absolute;
    right: 2rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.privacyPopUpClose:hover {
    transform: scale(1.1);
}

.privacyBox {
    width: 100%;
    max-height: 70vh;
    padding: 2.5rem 0.6rem 2.5rem 2.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacyBoxInner {
    width: 100%;
    height: 100%;
    max-height: calc(70vh - 5rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1.5rem;
}

.privacyBoxInner::-webkit-scrollbar {
    width: 3px;
}

.privacyBoxInner::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 999px;
}

.privacyBoxInner::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 999px;
}

.pri_Title {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.pri_Title::before {
    content: '';
    width: 3rem;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
}

.pri_txt {
    padding-bottom: 1.5rem;
}

.pri_txtTitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    text-align: left;
}

.pri_txtTxt {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.pri_txtNum {
    font-size: 0.9rem;
    padding: 0 0.2rem;
}

@media (max-width: 991px) {
    .privacyPopUp {
        width: 100%;
        padding: 3rem 0 0;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .privacyBox {
        height: calc(100vh - 4rem);
        max-height: none;
        border-radius: 1.5rem 1.5rem 0 0;
        padding: 2rem 0.6rem 0 1.5rem;
    }

    .privacyBoxInner {
        max-height: calc(100vh - 8rem);
        padding-right: 1rem;
    }

    .privacyPopUpClose {
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .pri_Title {
        font-size: 1.6rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .pri_txtTitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .pri_txtTxt {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
