:root {
  /* Colors */
  --color-primary: #034EA2;
  /* Samsung Blue */
  --color-primary-light: #0074c2;
  /* Brighter Samsung Blue */
  --color-accent: #FFD700;
  /* Gold/Yellow for CTA */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #FFFFFF;
  --color-bg-light: #F5F7FA;
  --color-white: #FFFFFF;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;

  /* Typography */
  --font-main: 'Inter', 'Noto Sans KR', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  /* ?�두�?공간 ?�보 */
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* ?�?�???��? ?�두�?*/
  box-shadow: 0 4px 6px rgba(3, 78, 162, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(3, 78, 162, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  /* ?�버 ???�두�?밝게 */
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: 1px solid rgba(3, 78, 162, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(3, 78, 162, 0.3);
}

.section {
  padding: var(--spacing-xxl) 0;
}
/* Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Staggered delays if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* GPU acceleration for smooth animations */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in {
    animation: fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}
.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--color-primary);
    /* Navy Border */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    filter: drop-shadow(0 2px 4px rgba(3, 78, 162, 0.2));
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.nav-list {
    display: flex;
    gap: 15px;
    /* 간격 조금 줄임 */
}

.nav-list a {
    font-weight: 700;
    color: var(--color-primary);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px solid rgba(3, 78, 162, 0.1);
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-list a:hover {
    color: white;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(3, 78, 162, 0.25);
    /* ?�버 ??그림??진하�?*/
}

.header-cta {
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    background: none;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 20px;
        flex-direction: column;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
        text-align: center;
    }

    .cta-button-container {
        display: none;
        /* Hide CTA on mobile nav for space, relying on hero CTA */
    }
}
.footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 60px 0 30px;
    border-top: 5px solid var(--color-primary);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ddd;
}

.business-info {
    font-weight: 600;
    color: var(--color-accent);
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section strong {
    color: white;
    margin-right: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4 {
        display: inline-block;
    }
}
.floating-button-group {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.floating-button-group.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #333;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.floating-btn .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.floating-btn .text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn:hover .text {
    opacity: 1;
    transform: translateX(0);
}

.kakao-btn {
    background-color: #FEE500;
}

.support-btn {
    background-color: #00A8FF;
    color: white;
}

.phone-btn {
    background-color: #034EA2;
    color: white;
}

.inquiry-btn {
    background-color: #FFD700;
}

.top-btn {
    background-color: #f8f9fa;
    width: 45px;
    height: 45px;
    align-self: flex-end;
}

.top-btn .icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .floating-button-group {
        right: 15px;
        top: 50%;
        transform: translateY(-50%) translateX(100px);
        gap: 8px;
    }

    .floating-button-group.visible {
        transform: translateY(-50%) translateX(0);
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn .text {
        display: none;
        /* Hide text on mobile */
    }
}
/* 세련된 하단 상담바 - 상단 네비와 통일감 */
.bottom-inquiry-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    z-index: 2100;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.inquiry-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.inquiry-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-badge {
    background: linear-gradient(135deg, #034EA2, #0456b3);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.inquiry-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.inquiry-phone {
    font-size: 1.3rem;
    font-weight: 800;
    color: #034EA2;
    text-decoration: none;
    transition: color 0.2s;
}

.inquiry-phone:hover {
    color: #023e80;
}

.inquiry-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.inquiry-form input {
    padding: 12px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 500;
    width: 160px;
    transition: all 0.2s;
}

.inquiry-form input:focus {
    outline: none;
    border-color: #034EA2;
    background: white;
    box-shadow: 0 0 0 3px rgba(3, 78, 162, 0.1);
}

.inquiry-form input::placeholder {
    color: #9ca3af;
}

.btn-inquiry-submit {
    background: linear-gradient(135deg, #034EA2 0%, #0456b3 100%);
    color: white !important;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(3, 78, 162, 0.25);
    white-space: nowrap;
}

.btn-inquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 78, 162, 0.35);
}

@media (max-width: 900px) {
    .bottom-inquiry-bar {
        display: none;
    }
}/* Base Slide Styles - Premium & Distinct */
.hero {
    position: relative;
    background-color: #f0f4f8;
    color: #333;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    transition: background 0.8s ease;
    /* Add separation shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Background Pattern Overlay (Subtle Texture) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(3, 78, 162, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(204, 153, 0, 0.03) 0%, transparent 20%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}

/* --- Slide Specific Backgrounds (Distinct but Professional) --- */

/* Slide 1: Trust/Navy Theme (Light Navy Tint) */
.hero.slide-id-1 {
    background: linear-gradient(135deg, #eef2f3 0%, #e0eafc 100%);
}

.hero.slide-id-1::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(3, 78, 162, 0.03);
    transform: rotate(15deg);
    z-index: -1;
}

/* Slide 2: Promotion/Blue Theme (Cool Blue Tint) */
.hero.slide-id-2 {
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

/* Circle Shape for Slide 2 */
.hero.slide-id-2::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 78, 146, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Slide 3: Speed/Maintenance (Dynamic Gray/Teal Tint) */
.hero.slide-id-3 {
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
}

/* Diagonal Stripe for Speed */
.hero.slide-id-3::after {
    content: '';
    position: absolute;
    top: 0;
    right: 30%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transform: skewX(-20deg);
    z-index: -1;
}

/* Slide 4: Inquiry (Warm/Invitation) */
.hero.slide-id-4 {
    background: linear-gradient(135deg, #fff1eb 0%, #ace0f9 100%);
    /* Warm to cool subtle transition */
}

/* --- Layout Variations --- */

/* Reversed Split (Image Left, Text Right) */
.slide-layout-reversed-split .hero-container {
    flex-direction: row-reverse;
}

.slide-layout-reversed-split .hero-content {
    text-align: right;
    align-items: flex-end;
}

.slide-layout-reversed-split .hero-actions {
    justify-content: flex-end;
}

/* Centered Focus (No Image, Text Centered) */
.slide-layout-centered-focus .hero-container {
    justify-content: center;
}

.hero-content.center-mode {
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Content Styles --- */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xxl);
    width: 100%;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Image Wrapper with distinct backing to separate from bg */
.hero-image-wrapper {
    background: transparent;
    backdrop-filter: none;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 650px;
    height: 500px;
    box-shadow: none;
    /* Subtle shadow for depth */
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
}

/* Overlap Style */
.hero-image-wrapper.overlap-style {
    transform: rotate(-2deg);
    background: rgba(255, 255, 255, 0.6);
}

.hero-image-wrapper.overlap-style img {
    transform: rotate(2deg) scale(1.05);
}

.hero-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* Badge Styles */
.hero-badge {
    background-color: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-badge.large-badge {
    font-size: 1.2rem;
    padding: 10px 30px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(3, 78, 162, 0.3);
}

/* Typography */
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: -1.5px;
    word-break: keep-all;
    /* ?⑥뼱媛 以묎컙???섎━吏 ?딅룄濡??ㅼ젙 */
    overflow-wrap: break-word;
}

.hero-title.center-title {
    font-size: 4.2rem;
}

.highlight {
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

/* Underline highlight effect */
.highlight::after {
    content: '';
    position: absolute;
    bottom: 0px;
    /* ?꾩튂瑜?議곌툑 ???꾨옒濡?議곗젙 */
    left: 0;
    width: 100%;
    height: 12px;
    /* ?믪씠瑜?議곌툑 ???뉕쾶 議곗젙 */
    background-color: rgba(255, 215, 0, 0.3);
    /* ?щ챸??議곗젙 */
    z-index: -1;
    transform: skewX(-10deg);
}

/* Special Highlight for Slide 4 */
.hero.slide-id-4 .highlight::after {
    background-color: rgba(255, 99, 71, 0.15);
    /* Red tint */
}


.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-xl);
    color: #555;
    font-weight: 500;
    line-height: 1.6;
    white-space: pre-line;
}

.hero-subtitle.center-subtitle {
    font-size: 1.6rem;
    color: #444;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-actions.center-actions {
    justify-content: center;
    width: 100%;
}

.btn-xl {
    padding: 18px 50px;
    font-size: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-block {
    min-width: 250px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 78, 162, 0.3);
    background-color: #023e80;
}

.btn-outline-white {
    background-color: white;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slider-btn {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 60px 0;
    }

    .hero-container,
    .slide-layout-reversed-split .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
    }

    .slide-layout-reversed-split .hero-content,
    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-image-wrapper {
        height: auto;
        max-width: 100%;
        margin-bottom: 30px;
        padding: 10px;
    }

    .hero-image img {
        max-height: 220px;
    }

    .hero-title,
    .hero-title.center-title {
        font-size: 1.8rem;
        /* 紐⑤컮?쇱뿉?쒕룄 ???덉쟾???ш린濡?議곗젙 */
    }

    .hero-actions,
    .slide-layout-reversed-split .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}


/* Ticker Wrap */
.ticker-wrap {
    width: 100%;
    height: 42px;
    /* 높이 약간 증가 */
    background: #034EA2;
    /* 기본 배경색 */
    background: linear-gradient(90deg, #034EA2 0%, #0456b3 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 100;
}

/* 왼쪽 고정 타이틀 */
.ticker-title {
    background-color: #022c5e;
    /* 더 진한 배경 */
    color: #ffffff;
    height: 100%;
    padding: 0 25px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 20;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    /* 절대 줄어들지 않음 */
}

/* 깜빡이는 아이콘 */
.ticker-icon {
    color: #00d2ff;
    /* 밝은 하늘색 */
    font-size: 0.8rem;
    margin-right: 10px;
    animation: blink 1.2s infinite alternate;
}

@keyframes blink {
    from {
        opacity: 1;
        text-shadow: 0 0 5px #00d2ff;
    }

    to {
        opacity: 0.4;
        text-shadow: none;
    }
}

/* 움직이는 트랙 */
.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    /* 부드러운 속도 */
    height: 100%;
}

/* 개별 텍스트 아이템 */
.ticker-item {
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0 40px;
    /* 간격 넓게 */
    font-weight: 500;
    display: flex;
    align-items: center;
    opacity: 0.95;
    position: relative;
}

/* 아이템 사이 구분 점 (옵션) */
.ticker-item::after {
    content: '•';
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    right: 0;
    font-size: 0.8rem;
}

/* 애니메이션 정의 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 마우스 올리면 멈춤 */
.ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
}.features {
    background-color: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.feature-desc {
    color: var(--color-text-light);
}
.process {
    background-color: var(--color-bg-light);
    text-align: center;
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    flex: 1;
    min-width: 200px;
    padding: var(--spacing-md);
}

.step-circle {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.process-step:hover .step-circle {
    background-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.step-title {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.step-desc {
    color: #666;
    font-size: 0.9rem;
}

.step-arrow {
    position: absolute;
    right: -10px;
    top: 40px;
    font-size: 1.5rem;
    color: #ccc;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .step-arrow {
        display: none;
        /* Hide arrows on mobile vertical layout */
    }
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xxl);
    color: var(--color-primary);
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    align-items: stretch;
}

.service-card {
    background: white;
    border: 1px solid #eee;
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.main-service {
    background: linear-gradient(to bottom right, #f8fbff, #ffffff);
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-xxl);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    gap: 10px;
    flex-wrap: wrap;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    word-break: keep-all;
    flex: 1;
    min-width: 0;
}

.badge {
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-card ul {
    margin: var(--spacing-lg) 0;
}

.service-card li {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.main-service .btn {
    width: 100%;
}

.btn-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Product Catalog Styles - Refined */
.product-catalog {
    background-color: #f9fafe;
    /* Slight tint background */
    padding: 80px 0;
}

.catalog-header {
    text-align: center;
    margin-bottom: 40px;
}

.catalog-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    word-break: keep-all;
}

.sub-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a202c;
    border-left: 6px solid var(--color-primary);
    padding-left: 15px;
    letter-spacing: -1px;
}

/* Promise Banner - 핵심 메시지만 크게 */
.catalog-promise-banner {
    background: linear-gradient(135deg, #034EA2 0%, #0456b3 50%, #034EA2 100%);
    color: white;
    padding: 24px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    box-shadow: 0 8px 25px rgba(3, 78, 162, 0.3);
    text-align: center;
}

.promise-icon {
    font-size: 2.5rem;
}

.promise-main-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFCC00;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .promise-main-text {
        font-size: 1.3rem;
    }

    .promise-icon {
        font-size: 2rem;
    }
}

/* Filter Controls */
.catalog-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-group {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-label {
    font-weight: 700;
    margin-right: 10px;
    color: #333;
    font-size: 0.9rem;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.2s ease;
}

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

.filter-btn.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Grid Layout */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Design */
.catalog-card {
    border: 1px solid #edf2f7;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Recommended Highlight */
.catalog-card.card-recommended {
    border: 2px solid var(--color-accent);
}

.best-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-accent);
    color: #023e80;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-bottom-left-radius: 12px;
    z-index: 10;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
}

.card-badge-container {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.card-badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.badge-laptop {
    background-color: #6366f1;
}

.badge-inkjet {
    background-color: #4caf50;
}

.badge-shredder {
    background-color: #034EA2;
}

.card-image {
    height: 380px;
    padding: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.laptop-card .card-image {
    background-color: #f8fafc;
    border-bottom: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.catalog-card:hover .card-image img {
    transform: scale(1.08);
}

/* Mono Copier Image Scale Fix */
.product-type-mono .card-image img {
    transform: scale(1.15);
}

.product-type-mono:hover .card-image img {
    transform: scale(1.25);
}

.card-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-model {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.laptop-card .card-model {
    color: #1a202c;
}

.card-desc {
    font-size: 0.92rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.5;
    word-break: keep-all;
}

.laptop-card .card-desc {
    color: #718096;
}

/* Card Design - Laptop Variant (통합 스타일) */
.catalog-card.laptop-card {
    background: white;
    border: 1px solid #edf2f7;
}

.catalog-card.laptop-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

/* Key Project Specs Box */
.card-key-specs {
    display: flex;
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    justify-content: space-around;
    text-align: center;
}

.laptop-card .card-key-specs {
    background-color: #f7fafc;
}

.spec-box {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    color: #a0aec0;
    font-weight: 600;
    margin-bottom: 2px;
}

.laptop-card .spec-label {
    color: #a0aec0;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-primary);
}

.laptop-card .spec-value {
    color: #6366f1;
}

.spec-value span {
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 2px;
    color: #718096;
}

.card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tag-item {
    font-size: 0.8rem;
    color: #888;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.laptop-card .tag-item {
    background-color: #f1f5f9;
    color: #888;
    border: 1px solid #e2e8f0;
}

.card-actions {
    margin-top: auto;
}

.btn-catalog-primary {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    background-color: var(--color-primary);
    color: white;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(3, 78, 162, 0.2);
}

.btn-catalog-primary:hover {
    background-color: #023e80;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(3, 78, 162, 0.3);
}

.btn-laptop-orange {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    color: white !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
    white-space: nowrap !important;
    word-break: keep-all !important;
}

.btn-laptop-orange:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.4);
    filter: brightness(1.1);
}

.btn-shredder-blue {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #034EA2 0%, #0074c2 100%);
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(3, 78, 162, 0.2);
}

.btn-shredder-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(3, 78, 162, 0.3);
    filter: brightness(1.1);
}

/* Laptop Showcase Styling */
.laptop-showcase {
    background-color: #f1f5f9;
    padding: 60px 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.laptop-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.laptop-sub-filters {
    display: flex;
    gap: 10px;
}

.sub-filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    background: white;
    font-weight: 700;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.sub-filter-btn:hover {
    border-color: #034EA2;
    color: #034EA2;
}

.sub-filter-btn.active {
    background: #034EA2;
    color: white;
    border-color: #034EA2;
    box-shadow: 0 4px 12px rgba(3, 78, 162, 0.2);
}

@media (max-width: 768px) {
    .catalog-promise-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .promise-text {
        align-items: center;
    }

    .laptop-showcase-header {
        flex-direction: column;
        text-align: center;
    }

    .laptop-sub-filters {
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}.remote-support {
    background-color: var(--color-bg-light);
    text-align: center;
    padding: 80px 0;
}

.support-text h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.support-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}
.trust {
    /* Use a background that reflects the business card - Clean and Professional */
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-primary);
    /* Navy top border like a card header */
}

.trust-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.trust-slogan {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.trust-desc {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: 500;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    transition: transform var(--transition-fast);
    border-top: 4px solid var(--color-accent);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}
.installation-cases {
    background-color: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.case-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-info {
    padding: var(--spacing-md);
}

.case-info h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.case-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}
.contact-section {
    background-color: #f4f7fa;
    padding: 100px 0;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-card.premium-white-card {
    background: white;
    color: #333;
    padding: 60px 50px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(3, 78, 162, 0.08);
    border: 1px solid #edf2f7;
    text-align: center;
}

.display-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1a202c;
}

.display-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
}

.contact-info-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-item .s-label {
    font-size: 0.85rem;
    color: #a0aec0;
    font-weight: 600;
}

.summary-item .s-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #2d3748;
}

.summary-item .s-value.highlight {
    color: var(--color-primary);
}

.contact-inputs.light-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
    text-align: left;
}

.form-group.full-width {
    grid-column: span 2;
}

.light-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #4a5568;
}

.light-form input,
.light-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #fcfdfe;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #2d3748;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.light-form textarea {
    height: 120px;
    resize: none;
}

.light-form input:focus,
.light-form textarea:focus {
    outline: none;
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(3, 78, 162, 0.05);
}

.form-actions {
    margin-top: 20px;
}

.btn-submit.orange-btn {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap !important;
    word-break: keep-all !important;
}

.btn-submit.orange-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
    filter: brightness(1.1);
}

.secure-notice {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #a0aec0;
}

@media (max-width: 800px) {
    .contact-card.premium-white-card {
        padding: 40px 20px;
    }

    .contact-info-summary {
        flex-direction: column;
        gap: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .display-title {
        font-size: 2rem;
    }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 30px;
    position: relative;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: popupFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close-top {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #cbd5e0;
    cursor: pointer;
    transition: color 0.2s;
}

.popup-close-top:hover {
    color: #1a202c;
}

.popup-tag {
    display: inline-block;
    background: #ebf8ff;
    color: #3182ce;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.popup-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 25px;
}

.popup-main-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
}

.popup-main-text strong {
    font-size: 1.6rem;
    color: #034EA2;
}

.highlight-blue {
    color: #3182ce;
    font-weight: 900;
    text-decoration: underline;
}

.highlight-gold {
    color: #d69e2e;
    font-weight: 900;
    text-decoration: underline;
}

.popup-sub-text {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 35px;
}

.popup-footer {
    display: flex;
    gap: 12px;
}

.popup-btn-close {
    flex: 1;
    background: #f7fafc;
    color: #718096;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.popup-btn-apply {
    flex: 1.5;
    background: linear-gradient(135deg, #034EA2 0%, #0074c2 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(3, 78, 162, 0.2);
}

.popup-btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 78, 162, 0.3);
}
/* Product Detail Page Styles - Premium Brand Identity */
.product-detail-page {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f4f7fa;
    color: #333;
}

.detail-main-wrap {
    margin-bottom: 80px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: flex-start;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(3, 78, 162, 0.08);
    /* 移대뱶 ?뚯텧 ?④낵 */
    border: 1px solid #edf2f7;
}

.detail-left-gallery {
    position: sticky;
    top: 120px;
}

.detail-brand-tag {
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.detail-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #1a202c;
    word-break: keep-all;
    line-height: 1.1;
}

.detail-main-subtitle {
    font-size: 1.35rem;
    color: #718096;
    margin-bottom: 45px;
    word-break: keep-all;
    font-weight: 500;
}

.detail-hero-image-v2 {
    margin-bottom: 40px;
    background: #fbfcfe;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #f0f4f8;
}

.detail-quick-specs {
    display: flex;
    gap: 30px;
    border-top: 1px solid #edf2f7;
    padding-top: 35px;
}

.q-spec {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.q-spec span {
    font-size: 0.9rem;
    color: #a0aec0;
    font-weight: 600;
}

.q-spec strong {
    font-size: 1.2rem;
    color: #2d3748;
}

.hero-back-link {
    display: inline-block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.hero-back-link:hover {
    color: var(--color-primary);
}

.fade-in-image {
    animation: fadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .detail-grid-layout {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 60px;
    }

    .detail-left-gallery {
        position: static;
    }

    .detail-main-title {
        font-size: 2.8rem;
    }
}

/* --- Right Side Estimate Card Styles --- */
.premium-navy-card {
    background: #ffffff;
    /* White background for clean look */
    color: #333333;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    border-radius: 20px;
    overflow: hidden;
}

.premium-navy-card .estimate-header {
    background: #f8fafc;
    /* Very light gray header */
    border-bottom: 1px solid #e2e8f0;
    padding: 25px;
    text-align: center;
}

.navy-card-title {
    color: #1a202c;
    /* Dark text */
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.navy-card-subtitle {
    color: #718096;
    /* Gray text */
    font-size: 0.95rem;
    margin: 0;
}

.premium-navy-card .estimate-body {
    padding: 30px;
}

/* Form Styles - High Contrast */
.navy-form .form-group label {
    color: #4a5568;
    /* Dark gray label */
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.navy-form .form-group input {
    background: #ffffff;
    border: 1px solid #cbd5e0;
    color: #2d3748;
    /* Dark text input */
    padding: 14px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    /* Ensure padding doesn't break layout */
}

.navy-form .form-group input:focus {
    background: #ffffff;
    border-color: #3182ce;
    /* Blue focus */
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.navy-form .form-group input::placeholder {
    color: #a0aec0;
}

.form-notice {
    color: #718096;
    font-size: 0.85rem;
    margin-top: 15px;
    text-align: center;
}

/* Orange Button Style */
.orange-btn {
    background: #e53e3e;
    /* Setup strong red/orange */
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    font-weight: 800;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(229, 62, 62, 0.3);
}

.orange-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(229, 62, 62, 0.4);
}

/* Info List / Table Styles */
.estimate-info-table-container {
    border: 1px solid #e2e8f0;
    background: #f7fafc;
    /* Very light gray bg for table area */
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.rental-price-table th {
    color: #4a5568;
    font-weight: 500;
    text-align: left;
    padding: 12px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.rental-price-table td {
    color: #1a365d;
    font-weight: 700;
    text-align: right;
    padding: 12px 16px;
    font-size: 1rem;
}

.rental-price-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.rental-price-table tr:last-child {
    border-bottom: none;
}

.rental-price-table .rental-highlight {
    color: #2b6cb0;
    font-size: 1.15rem;
}

/* Fallback List Style */
.navy-info-list {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.navy-info-list .info-row {
    border-bottom: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.navy-info-list .info-label {
    color: #718096;
    font-weight: 600;
}

.navy-info-list .info-value {
    color: #2d3748;
    font-weight: 700;
}

.navy-info-list .price-tag {
    color: #3182ce;
    font-size: 1.2rem;
}


/* Estimate Form Styles - Premium Business Look */
.estimate-form-container {
    background-color: #f8faff;
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 80px;
}

.estimate-card {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(3, 78, 162, 0.08);
    overflow: hidden;
    border: 1px solid #edf2f7;
}

.estimate-header {
    background: linear-gradient(135deg, #034EA2 0%, #0456b3 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.estimate-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.estimate-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.estimate-body {
    padding: 40px;
}

/* Info List Style (Spreadsheet/Receipt Look) */
.estimate-info-list {
    margin-bottom: 40px;
    border-top: 2px solid #333;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.info-label {
    font-weight: 700;
    color: #666;
    flex: 1;
}

.info-value {
    font-weight: 800;
    color: #111;
    text-align: right;
    flex: 2;
}

.info-value.highlight-price {
    font-size: 1.3rem;
    color: var(--color-primary);
}

.info-value.product-name {
    color: #034EA2;
}

.info-row.total-row {
    background-color: #fcfcfc;
    padding: 20px 10px;
    margin-top: 10px;
    border-bottom: 2px solid #111;
}

.info-row.total-row .info-label {
    color: #111;
    font-size: 1.2rem;
}

.info-row.total-row .info-value {
    color: #e63946;
    font-size: 1.8rem;
}

/* Form Input Grid */
.estimate-input-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #444;
}

.form-group input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(3, 78, 162, 0.1);
}

.estimate-submit-btn {
    width: 100%;
    margin-top: 40px;
    padding: 20px;
    background-color: #e63946;
    /* Noticeable Accent Color */
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

.estimate-submit-btn:hover {
    background-color: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
}

.estimate-footer {
    padding: 20px;
    text-align: center;
    background-color: #f7f9fc;
    border-top: 1px solid #eee;
}

.estimate-footer p {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 600px) {
    .estimate-form-container {
        padding: 40px 15px;
    }

    .estimate-body {
        padding: 20px;
    }

    .estimate-input-section {
        grid-template-columns: 1fr;
    }

    .input-full {
        grid-column: span 1;
    }

    .info-row {
        flex-direction: column;
        gap: 4px;
    }

    .info-value {
        text-align: left;
    }
}
/* ===== 관리자 페이지 스타일 ===== */

/* 로그인 페이지 */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
}

.admin-login-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-header h1 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.admin-login-header p {
    color: #666;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

/* 대시보드 레이아웃 */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
}

/* 사이드바 */
.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
}

.admin-logo {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.admin-logo span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.admin-nav {
    flex: 1;
    padding: 20px 12px;
}

.admin-nav-item {
    display: block;
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-align: left;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 4px;
    text-decoration: none;
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-nav-item.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 600;
}

.admin-sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #fca5a5 !important;
}

/* 메인 콘텐츠 */
.admin-content {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
}

.admin-header {
    background: white;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-header h1 {
    font-size: 24px;
    color: #1f2937;
    margin: 0;
}

.admin-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

/* 공통 버튼 */
.admin-btn {
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.admin-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
}

.admin-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.admin-btn-danger {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.admin-btn-danger:hover {
    background: #fee2e2;
}

.admin-btn-small {
    padding: 6px 12px;
    font-size: 13px;
}

/* 폼 요소 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.section-title {
    font-size: 16px;
    color: #1f2937;
    margin: 24px 0 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

/* 툴바 */
.manager-toolbar {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.search-box input {
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: 300px;
    font-size: 14px;
}

.filter-box select {
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

/* 제품 그리드 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.product-card-admin {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.product-card-admin:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-image-admin {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.product-image-admin img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-admin h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.rental-info {
    background: #f0f9ff;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.rental-info .price {
    font-weight: 600;
    color: #0369a1;
    font-size: 14px;
}

.edit-btn {
    margin-top: auto;
    padding: 10px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.edit-btn:hover {
    background: #e5e7eb;
}

/* 모달 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 20px;
    color: #1f2937;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.close-btn:hover {
    color: #4b5563;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

/* 티커 관리 */
.ticker-info {
    background: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.ticker-info p {
    color: #92400e;
    margin: 0;
    font-size: 14px;
}

.add-ticker-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.add-ticker-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
}

.ticker-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.ticker-number {
    width: 32px;
    height: 32px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6b7280;
    font-size: 14px;
    flex-shrink: 0;
}

.ticker-text {
    flex: 1;
    color: #374151;
    font-size: 14px;
}

.ticker-actions {
    display: flex;
    gap: 8px;
}

.ticker-edit-form {
    display: flex;
    flex: 1;
    gap: 12px;
    align-items: center;
}

.ticker-edit-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    font-size: 14px;
}

.ticker-edit-actions {
    display: flex;
    gap: 8px;
}

/* 설치 사례 그리드 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.case-card-admin {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.case-image-admin {
    width: 100%;
    height: 180px;
    background: #f3f4f6;
}

.case-image-admin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-info-admin {
    padding: 20px;
}

.case-info-admin h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 8px;
}

.case-info-admin p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.blog-link {
    color: #3b82f6;
    font-size: 13px;
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

.case-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
}

/* 빈 상태 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

/* 반응형 */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .admin-content {
        margin-left: 0;
    }

    .admin-dashboard {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .add-ticker-form {
        flex-direction: column;
    }

    .search-box input {
        width: 100%;
    }
}/* App specific styles if needed */

@keyframes blink { from { opacity: 1; } to { opacity: 0.4; } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

