/* CSS Variables and Basics */
:root {
    --primary: #0F6CBD;
    --primary-hover: #0c5696;
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-main: #242424;
    --text-muted: #605e5c;
    --border-color: #edebe9;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-family: 'Pretendard', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-family); color: var(--text-main);
    background-color: var(--bg-color); line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.35; color: var(--text-main); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Dynamic Top Banner */
.top-banner {
    display: flex; justify-content: center; align-items: center;
    padding: 12px 24px; font-size: 0.95rem; font-weight: 600;
    position: relative; z-index: 1000;
}
.top-banner a { text-decoration: underline; margin-right: 16px; }
.banner-close {
    background: none; border: none; font-size: 1.8rem;
    cursor: pointer; position: absolute; right: 24px; color: inherit; line-height: 1;
}

/* Header & Navigation */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color); transition: var(--transition);
}
.header .container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-kaoni { height: 26px; width: auto; object-fit: contain; }
.logo-microsoft { height: 26px; width: auto; object-fit: contain; }
.logo-divider { width: 1px; height: 22px; background: var(--border-color); flex-shrink: 0; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.mobile-menu-btn {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 101;
}
.mobile-menu-btn span {
    display: block; width: 24px; height: 2px;
    background: var(--text-main); border-radius: 2px; transition: all 0.3s ease;
}
.header.nav-open .mobile-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.nav-open .mobile-menu-btn span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header.nav-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-cta { display: none; }

.btn-primary {
    display: inline-block; background-color: var(--primary); color: white;
    padding: 13px 24px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    transition: var(--transition); border: none; cursor: pointer; text-align: center;
    min-height: 44px; line-height: 1.2;
}
.btn-primary.large { padding: 14px 40px; font-size: 1.1rem; min-height: 48px; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }
.btn-secondary {
    display: inline-block; background-color: white; color: var(--primary);
    padding: 10px 24px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    border: 1px solid var(--primary); transition: var(--transition); cursor: pointer; text-align: center;
}
.btn-secondary:hover { background-color: var(--bg-secondary); color: var(--primary-hover); }

/* Partners Marquee Section */
.partners-section {
    padding: 72px 0 64px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.partners-section .section-title { text-align: center; margin-bottom: 8px; }
.partners-section .section-sub { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.partners-divider {
    display: flex; align-items: center; gap: 16px;
    max-width: 200px; margin: 24px auto 40px;
}
.partners-divider::before, .partners-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border-color);
}
.partners-divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); opacity: 0.4; flex-shrink: 0; }

.marquee-track {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    padding: 8px 0;
}
.marquee-track + .marquee-track { margin-top: 12px; }
.marquee-inner { display: flex; width: max-content; align-items: center; gap: 0; }
.marquee-inner.scroll-left { animation: marquee-left 70s linear infinite; }
.marquee-inner.scroll-right { animation: marquee-right 85s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }

.partner-item {
    display: flex; align-items: center; justify-content: center;
    height: 56px; padding: 0 36px;
    opacity: 0.45; filter: grayscale(1);
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.25s ease;
    flex-shrink: 0; position: relative; cursor: default;
}
.partner-item + .partner-item::before {
    content: '';
    position: absolute; left: 0;
    width: 1px; height: 20px;
    background: var(--border-color);
}
.partner-item:hover { opacity: 1; filter: grayscale(0); transform: scale(1.05); }
.partner-item img { max-height: 32px; max-width: 110px; width: auto; object-fit: contain; display: block; }
.partner-item-text {
    font-size: 0.95rem; font-weight: 700;
    color: var(--text-main); white-space: nowrap;
    letter-spacing: -0.01em;
}

@keyframes marquee-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Hero Section */
@keyframes hero-gradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes hero-orb-1 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(180px, -80px); }
    50%  { transform: translate(120px, 120px); }
    75%  { transform: translate(-60px, 80px); }
    100% { transform: translate(0px, 0px); }
}
@keyframes hero-orb-2 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(-150px, 60px); }
    50%  { transform: translate(-80px, -100px); }
    75%  { transform: translate(100px, -60px); }
    100% { transform: translate(0px, 0px); }
}
@keyframes hero-orb-3 {
    0%   { transform: translate(-50%, -50%); }
    33%  { transform: translate(calc(-50% + 140px), calc(-50% - 60px)); }
    66%  { transform: translate(calc(-50% - 100px), calc(-50% + 80px)); }
    100% { transform: translate(-50%, -50%); }
}
.hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    background: #0a0f2e;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0f2e 0%, #0d1b4b 40%, #0a1628 100%);
    z-index: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}
.hero-orb-1 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, #3b82f6 0%, #1d4ed8 60%, transparent 100%);
    top: -80px; left: -100px;
    animation: hero-orb-1 10s ease-in-out infinite;
}
.hero-orb-2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #a855f7 0%, #7c3aed 60%, transparent 100%);
    bottom: -100px; right: -80px;
    animation: hero-orb-2 13s ease-in-out infinite;
}
.hero-orb-3 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #38bdf8 0%, #0284c7 60%, transparent 100%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: hero-orb-3 8s ease-in-out infinite;
}
.hero .container { position: relative; z-index: 1; }
.hero .btn-primary { box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 8px 32px rgba(37,99,235,0.4); }
.hero .btn-primary:hover { box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 12px 40px rgba(37,99,235,0.55); }
.hero h1 { font-size: 3.5rem; letter-spacing: -0.02em; margin-bottom: 24px; color: #ffffff; }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 40px; }
.section-title { font-size: 2.25rem; margin-bottom: 16px; letter-spacing: -0.01em; }

/* Rolling Cards (Purchase Guide) */
.guide-section { padding: 100px 0; }
.carousel-wrapper { position: relative; }
.scroll-btn {
    display: none; position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; background: white;
    border: 1px solid var(--border-color); box-shadow: var(--shadow-md);
    cursor: pointer; font-size: 1.25rem; color: var(--text-main);
    z-index: 10; align-items: center; justify-content: center;
}
.carousel-wrapper.show-nav .scroll-btn { display: flex; }
.scroll-btn:hover { background: var(--bg-secondary); color: var(--primary); }
.scroll-btn.prev { left: -22px; }
.scroll-btn.next { right: -22px; }

.rolling-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 285px));
    justify-content: center;
    gap: 20px;
    padding: 8px 4px 40px;
    align-items: stretch;
}
.rolling-wrapper.grid-4 { grid-template-columns: repeat(4, 1fr); }
.rolling-wrapper.grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; }
.rolling-wrapper::-webkit-scrollbar { display: none; }

/* Home page specific scrolling wrapper */
.rolling-wrapper.scrollable {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}
.rolling-wrapper.scrollable .pricing-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    min-width: 280px;
}

/* Modern Pricing Cards (Advanced JSON Rendering) */
.pricing-card {
    background: white; border: 1px solid var(--border-color); border-radius: 16px;
    padding: 28px 22px; transition: var(--transition); position: relative;
    display: flex; flex-direction: column; overflow: hidden; font-family: 'Pretendard', sans-serif;
}
.pricing-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }

.pc-badge {
    background: #f0f6ff; color: var(--primary); text-align: center;
    padding: 8px 10px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 6px;
    height: 42px; white-space: nowrap;
}
.pc-title { font-size: 1.3rem; font-weight: 800; line-height: 1.35; margin-bottom: 12px; min-height: 56px; }
#copilot-guide-container .pc-title { min-height: 130px; }
.pc-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; min-height: 68px; }

/* Pricing Section & Ribbon */
.pc-price-box { text-align: center; margin-bottom: 24px; position: relative; padding-top: 10px; }
.pc-original-price { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
.pc-current-price { font-size: 2rem; font-weight: 800; color: #e55c00; line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.pc-commitment { font-size: 0.82rem; color: var(--text-muted); }

.pc-discount-ribbon {
    position: absolute; top: -14px; right: 0; background: #e55c00; color: white;
    width: 52px; padding: 12px 0 16px; text-align: center; font-weight: 800;
    font-size: 1.15rem; line-height: 1.2; clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}
.pc-discount-ribbon span { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 4px; }

/* Action Buttons */
.pc-actions { display: flex; gap: 12px; margin-bottom: 32px; }
.pc-btn-primary {
    flex: 2; background: #2361ac; color: white; text-align: center;
    padding: 14px; border-radius: 8px; font-weight: 700; font-size: 1.05rem; transition: var(--transition);
}
.pc-btn-primary:hover { background: #164682; }
.pc-btn-secondary {
    flex: 1; background: #242424; color: white; text-align: center;
    padding: 14px; border-radius: 8px; font-weight: 700; font-size: 1.05rem; transition: var(--transition);
}
.pc-btn-secondary:hover { background: #000; }

/* Apps Grid */
.pc-apps-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.pc-apps-grid {
    display: flex; flex-wrap: wrap; gap: 4px; /* 기존 8px에서 4px로 타이트하게 */
    margin-bottom: 24px; min-height: 40px; justify-content: flex-start;
}

/* App Icon Tooltip styles */
.app-global-tooltip {
    position: absolute;
    z-index: 9999;
    background: #ffffff;
    color: #444;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 250px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.app-global-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.app-global-tooltip strong {
    font-weight: 700;
    color: #111;
}

/* Tabs UI */
.tabs-nav { display: flex; box-shadow: inset 0 -2px 0 0 #e1e1e1; margin-bottom: 28px; gap: 0; }
.tab-btn, .tab-btn-biz {
    background: none; border: none; font-size: 1.05rem; padding: 12px 28px;
    cursor: pointer; color: #888; border-bottom: 3px solid transparent;
    font-weight: 700; transition: all 0.2s; white-space: nowrap;
}
.tab-btn:hover, .tab-btn-biz:hover { color: var(--primary); }
.tab-btn.active, .tab-btn-biz.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Plan Badge (e.g. 노팀즈) */
.pc-plan-badge {
    display: inline-flex; align-items: center;
    background: #FF6B35; color: white;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em;
    padding: 3px 8px; border-radius: 20px;
    vertical-align: middle; margin-left: 8px;
    white-space: nowrap; line-height: 1.4;
}
/* pc-title: flex for badge alignment */
.pc-title { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 1.3rem; font-weight: 800; line-height: 1.35; margin-bottom: 12px; }
.pc-title span { color: var(--primary); font-weight: 900; }

/* CSS Rendered App Icons (Fallback) */
.app-icon {
    width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: white; font-size: 0.8rem; box-shadow: 1px 2px 5px rgba(0,0,0,0.15); letter-spacing: -1px;
    flex-shrink: 0;
}
/* Core Office Apps */
.app-w       { background: linear-gradient(135deg, #2b579a 20%, #153463 100%); }
.app-x       { background: linear-gradient(135deg, #217346 20%, #104126 100%); }
.app-p       { background: linear-gradient(135deg, #d24726 20%, #872511 100%); }
.app-n       { background: linear-gradient(135deg, #7719aa 20%, #460c68 100%); }
.app-o       { background: linear-gradient(135deg, #0078d4 20%, #004578 100%); }
/* Collaboration */
.app-t       { background: linear-gradient(135deg, #6264a7 20%, #464775 100%); }
.app-s       { background: linear-gradient(135deg, #036c70 20%, #024344 100%); }
.app-d       { background: linear-gradient(135deg, #0078d4 20%, #004578 100%); }
/* Security & Management */
.app-defender { background: linear-gradient(135deg, #1c1c1e 0%, #2f2f2f 100%); }
.app-entra   { background: linear-gradient(135deg, #0078d4 20%, #004578 100%); }
.app-intune  { background: linear-gradient(135deg, #0f6cbd 20%, #0856a0 100%); }
.app-purview { background: linear-gradient(135deg, #0f6cbd 0%, #773adc 100%); }
/* Productivity & Analytics */
.app-loop    { background: linear-gradient(135deg, #b146c2 20%, #7a1c9e 100%); }
.app-clip    { background: linear-gradient(135deg, #5c2d91 20%, #3a1a5c 100%); }
.app-pa      { background: linear-gradient(135deg, #742774 20%, #4a1752 100%); }
.app-bi      { background: linear-gradient(135deg, #f2c811 20%, #c9a300 100%); color: #333; }
/* Communication */
.app-exchange { background: linear-gradient(135deg, #0078d4 20%, #2b579a 100%); }
.app-stream  { background: linear-gradient(135deg, #bc1948 20%, #8b1036 100%); }
.app-yammer  { background: linear-gradient(135deg, #106ebe 20%, #0e5ca0 100%); }
/* Copilot */
.app-copilot { background: linear-gradient(135deg, #0078d4 20%, #7719aa 100%); }
/* Other */
.app-visio   { background: linear-gradient(135deg, #3955a3 20%, #223399 100%); }
.app-access  { background: linear-gradient(135deg, #a4373a 20%, #6e2021 100%); }
.app-pub     { background: linear-gradient(135deg, #077568 20%, #025048 100%); }

/* 실제 이미지 아이콘 (SVG/PNG/WebP/AVIF) */
.pc-apps-grid img {
    width: 32px; height: 32px; border-radius: 6px;
    object-fit: contain; display: block;
    box-shadow: 1px 2px 5px rgba(0,0,0,0.12);
    background: white; padding: 2px;
}

/* Tags */
.pc-tags { padding-top: 16px; border-top: 1px solid var(--border-color); display: flex; gap: 6px; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; min-height: 52px; }
.pc-tag { font-size: 0.78rem; color: #2361ac; border: 1px solid #c8d9f0; background: #f0f6ff; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

/* Effects Counter Data Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #004578 100%); 
    color: white; padding: 100px 0; text-align: center;
}
.stats-section .section-title { color: white; margin-bottom: 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-icon { margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.stat-number-wrap { font-size: 4rem; font-weight: 800; line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.stat-desc { font-size: 1.15rem; opacity: 0.9; }

/* Feature Comparison Table */
.comparison-section { padding: 40px 0 80px; }
.comparison-table-wrapper {
    overflow-x: auto; background: white; border-radius: 16px;
    border: 1px solid var(--border-color); box-shadow: var(--shadow-sm);
}
.comparison-table { width: 100%; min-width: 900px; border-collapse: collapse; text-align: center; }
.comparison-table th, .comparison-table td { padding: 20px 16px; border-bottom: 1px solid var(--border-color); }

/* Custom Feature Cards (e.g. Copilot Features) */
.features-section { padding: 40px 0 80px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: white; border: 1px solid #f2cfdc; border-radius: 12px;
    padding: 32px 24px; position: relative;
    box-shadow: 0 4px 12px rgba(216,30,91,0.04);
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(216,30,91,0.1); border-color:#d81e5b; }
.feature-card-icon {
    position: absolute; top: 32px; right: 24px; width: 36px; height: 36px;
    color: #d81e5b; display:flex; justify-content:center; align-items:center; opacity:0.8;
}
.feature-card-icon svg { width: 100%; height: 100%; }
.feature-card-title {
    font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; padding-right:48px;
    background: linear-gradient(135deg, #d81e5b 0%, #8a2be2 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1.4;
}
.feature-card-desc { font-size: 0.95rem; color: #555; line-height: 1.6; }
.comparison-table th {
    background: var(--bg-secondary); font-weight: 700; position: sticky; top: 0; z-index: 2;
    color: var(--text-main); font-size: 1.05rem;
}
.comparison-table th:first-child { text-align: left; left: 0; z-index: 3; border-right: 1px solid var(--border-color); width: 340px;}
.comparison-table td:first-child { text-align: left; position: sticky; left: 0; background: white; z-index: 1; border-right: 1px solid var(--border-color); font-weight: 600; color: var(--text-main); }
.comparison-table tbody tr:hover td { background: #f8fbff; }
.comparison-table tbody tr:hover td:first-child { background: #f8fbff; }
.comparison-category-row td { background: var(--bg-secondary) !important; }
.comparison-category-row:hover td { background: #edf2f7 !important; }
.comparison-feature-row td { padding: 8px 16px !important; }
.comparison-feature-row td:first-child { background: white; font-weight: 400; color: var(--text-muted); font-size: 0.82rem; padding-left: 32px !important; }
.comparison-feature-row:hover td { background: #f4f8ff !important; }
.comparison-feature-row:hover td:first-child { background: #f4f8ff !important; }

.icon-check { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: var(--primary); }
.icon-hyphen { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: #ccc; }
.icon-circle-full { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: #0078D4; }
.icon-circle-empty { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: #a0aec0; }

.legend-box { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-bottom: 16px; font-size: 0.95rem; color: var(--text-main); font-weight: 600; }
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-accordion-btns { display: flex; gap: 6px; margin-left: 8px; border-left: 1px solid var(--border-color); padding-left: 16px; }
.legend-toggle-btn { padding: 5px 12px; border-radius: 20px; border: 1.5px solid var(--border-color); background: white; font-size: 0.8rem; font-weight: 600; font-family: inherit; cursor: pointer; color: var(--text-muted); transition: all 0.15s; }
.legend-toggle-btn:hover { border-color: var(--primary); color: var(--primary); }
.legend-toggle-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* Individual Services - Tab+Panel Layout */
.svc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.svc-tab-list { display: flex; flex-direction: column; gap: 8px; }
.svc-tab-btn {
    display: block; width: 100%; text-align: left; padding: 14px 20px;
    background: white; border: 1.5px solid var(--border-color); border-radius: 40px;
    font-size: 1rem; font-weight: 600; color: var(--text-main); cursor: pointer;
    transition: all 0.2s ease;
}
.svc-tab-btn:hover { border-color: var(--primary); color: var(--primary); background: #f0f7ff; }
.svc-tab-btn.active {
    background: var(--primary); color: white; border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(35, 97, 172, 0.25);
}
.svc-panel { background: white; border-radius: 24px; padding: 32px; box-shadow: var(--shadow-md); border: 1px solid var(--border-color); }
.svc-panel-img-wrap { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(135deg, #e8f0fe 0%, #cfe2f3 100%); display: flex; align-items: center; justify-content: center; }
.svc-panel-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-panel-logo {
    position: absolute; bottom: 12px; right: 12px;
    width: 60px; height: 60px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 900; color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    overflow: hidden;
    box-sizing: border-box;
}
.svc-placeholder-icon { font-size: 5rem; opacity: 0.25; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-app-card {
    display: flex; gap: 20px; padding: 32px; background: white; border-radius: 16px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s; cursor: pointer;
}
.service-app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0, 120, 212, 0.3); }

/* Notice Board */
.notice-section { padding: 100px 0; background: var(--bg-secondary); }
.notice-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }
.notice-header p { color: var(--text-muted); margin-bottom: 24px; font-size: 1.1rem; }
.notice-list { background: white; border-radius: 12px; border: 1px solid var(--border-color); overflow: hidden; box-shadow: var(--shadow-sm); }
.notice-item { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--border-color); cursor: pointer; transition: background 0.2s; }
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--bg-secondary); }
.notice-item-title { font-weight: 600; color: var(--text-main); font-size: 1.05rem; }
.notice-item-date { color: var(--text-muted); font-size: 0.9rem; margin-left:16px; flex-shrink: 0; }

/* Bottom Promo (Premium CTA box) */
.promo-bottom { padding: 60px 24px 100px; text-align: center; }
.promo-box {
    background: linear-gradient(135deg, var(--primary) 0%, #004578 100%);
    border-radius: 32px; padding: 100px 40px; color: white;
    box-shadow: 0 24px 48px rgba(0,69,120,0.15);
    max-width: 1200px; margin: 0 auto; position: relative; overflow: hidden;
}
.promo-box::before { content: ''; position: absolute; top: -50%; left: -10%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%); pointer-events: none; }
.promo-box::after { content: ''; position: absolute; bottom: -50%; right: -10%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%); pointer-events: none; }

.promo-box h2 { font-size: 2.8rem; margin-bottom: 24px; color: white; font-weight: 800; letter-spacing: -0.02em; position: relative; z-index: 2; line-height: 1.3; }
.promo-box p { color: rgba(255,255,255,0.9); font-size: 1.25rem; margin-bottom: 48px; position: relative; z-index: 2; }

.btn-promo {
    position: relative; z-index: 2;
    display: inline-flex; align-items: center; justify-content: center;
    background: white; color: var(--primary); font-size: 1.3rem; font-weight: 800;
    padding: 22px 56px; border-radius: 60px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2); text-decoration: none;
}
.btn-promo:hover {
    transform: translateY(-6px) scale(1.02); box-shadow: 0 24px 48px rgba(0,0,0,0.25);
    color: #004578;
}

/* Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center; z-index: 2000;
    opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: white; width: 90%; max-width: 600px; border-radius: 16px; padding: 48px;
    position: relative; transform: translateY(20px); transition: transform 0.3s;
    max-height: 85vh; overflow-y: auto; text-align: left;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 24px; font-size: 2.2rem; font-weight: 300; background: none; border: none; cursor: pointer; color: var(--text-muted); }
.modal-close:hover { color: var(--text-main); }
.modal-body h2 { margin-bottom: 16px; font-size: 1.6rem; color: var(--primary); }
.modal-body p, .modal-body strong, .modal-body em { margin-bottom: 16px; color: var(--text-main); line-height: 1.8; display: block; }
.modal-body em { font-style: normal; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 16px; display: block; }

/* Footer */
.footer { border-top: 1px solid var(--border-color); padding: 40px 0; text-align: center; color: var(--text-muted); font-size: 0.9rem; background: var(--bg-secondary); }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: left; margin-bottom: 24px; }
.footer-grid h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.footer-grid p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ==============================
   Copilot Apps Tabs
============================== */
.copilot-apps-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
}
.copilot-apps-sidebar {
    background: #eef4fa;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.c-app-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid transparent;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.c-app-tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.c-app-tab.active {
    background: #193f8a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(25, 63, 138, 0.3);
}
.copilot-apps-content-area {
    background: #ffffff;
    padding: 40px;
}
/* 모바일 아코디언 패널 — 데스크탑에서는 숨김 */
.ca-inline-panel { display: none; }
.ca-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #193f8a;
    margin-bottom: 8px;
    line-height: 1.4;
}
.ca-desc {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.4;
}
.ca-effect {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.ca-img-container {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}
.ca-img-container img {
    width: 100%;
    display: block;
}
.ca-commands-box {
    background: #f8f9fa;
    padding: 24px 32px;
    border-radius: 8px;
}
.ca-commands-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}
.ca-commands-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ca-commands-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}
.ca-commands-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #888;
}

/* ==============================
   Responsive Design
============================== */
@media (max-width: 1240px) {
    /* 1200px 공간이 부족해지는 순간부터 카드가 찌그러지지 않고 가로 스크롤로 넘어갑니다 */
    .scroll-btn { display: flex; }
    .rolling-wrapper {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        grid-template-columns: none; scrollbar-width: none; -ms-overflow-style: none;
        padding-bottom: 24px; padding-left: 4px; padding-right: 4px; /* 스크롤 여백 */
    }
    .rolling-wrapper::-webkit-scrollbar { display: none; }
    .pricing-card { flex: 0 0 340px; scroll-snap-align: start; }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .notice-layout { grid-template-columns: 260px 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.05rem; }
    .section-title { font-size: 1.75rem; }
    .guide-section { padding: 64px 0; }
    .scroll-btn { display: none !important; }
    .rolling-wrapper.carousel .scroll-btn,
    .carousel-wrapper.show-nav .scroll-btn {
        display: flex !important;
        width: 36px; height: 36px; font-size: 1rem; opacity: 0.9;
    }
    .carousel-wrapper.show-nav .scroll-btn.prev { left: -8px; }
    .carousel-wrapper.show-nav .scroll-btn.next { right: -8px; }
    .rolling-wrapper, .rolling-wrapper.grid-3, .rolling-wrapper.grid-4 {
        display: flex; flex-direction: column;
        overflow-x: unset; scroll-snap-type: unset;
        max-width: 100%;
    }
    .rolling-wrapper.carousel, .rolling-wrapper.carousel.grid-3, .rolling-wrapper.carousel.grid-4 {
        flex-direction: row;
        overflow-x: auto; scroll-snap-type: x mandatory;
        scrollbar-width: none; -ms-overflow-style: none;
    }
    .rolling-wrapper.carousel::-webkit-scrollbar { display: none; }
    .rolling-wrapper.carousel .pricing-card { flex: 0 0 85vw; max-width: 340px; scroll-snap-align: start; }
    .rolling-wrapper.scrollable .pricing-card { flex: unset; }
    .pricing-card { flex: unset; scroll-snap-align: unset; width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .service-app-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .svc-layout { grid-template-columns: 1fr; }
    .stats-section { padding: 64px 0; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .notice-section { padding: 64px 0; }
    .notice-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .header .btn-primary { display: none; }
    .mobile-menu-btn { display: flex; }
    .header.nav-open nav {
        display: block;
        position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 16px 24px 24px; z-index: 99;
    }
    .header.nav-open .nav-links {
        display: flex; flex-direction: column; gap: 0; margin-bottom: 16px;
    }
    .header.nav-open .nav-links li a {
        display: block; padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem; color: var(--text-main);
    }
    .header.nav-open .nav-links li:last-child a { border-bottom: none; }
    .mobile-nav-cta { display: none; }
    .header.nav-open .mobile-nav-cta {
        display: block; text-align: center;
        background: var(--primary); color: #fff !important;
        border-radius: 8px; padding: 12px 0; font-weight: 700;
        margin-top: 8px;
    }
    /* 모바일: 아코디언 구조로 전환 */
    .copilot-apps-layout {
        display: block;
        border-radius: 12px;
    }
    .copilot-apps-sidebar {
        padding: 0;
        background: transparent;
        flex-direction: column;
        gap: 0;
    }
    .c-app-tab {
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
        background: #eef4fa;
        padding: 16px 20px;
        font-size: 1rem;
        justify-content: space-between;
    }
    .c-app-tab::after {
        content: '▾';
        font-size: 1rem;
        color: #193f8a;
        transition: transform 0.2s;
        flex-shrink: 0;
    }
    .c-app-tab.active::after { transform: rotate(180deg); }
    .c-app-tab:first-child { border-radius: 12px 12px 0 0; }
    .c-app-tab.active {
        background: #193f8a;
        color: #fff;
        border-bottom-color: #193f8a;
    }
    .c-app-tab.active::after { color: #fff; }
    /* 인라인 콘텐츠 패널 (모바일 전용) */
    .ca-inline-panel {
        display: none;
        padding: 24px 20px;
        background: #fff;
        border-bottom: 1px solid var(--border-color);
    }
    .ca-inline-panel.open { display: block; }
    /* 데스크탑 우측 콘텐츠 영역 숨김 */
    .copilot-apps-content-area { display: none; }
    .promo-bottom h2 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer-bottom > div {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        gap: 10px;
    }
    .family-site-dropdown { right: auto; left: 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-orb-1 { width: 200px; height: 200px; top: -60px; left: -60px; }
    .hero-orb-2 { width: 180px; height: 180px; bottom: -60px; right: -60px; }
    .hero-orb-3 { width: 140px; height: 140px; }
    .pricing-card { flex: 0 0 calc(100vw - 48px); padding: 24px 16px; }
    .pc-current-price { font-size: 2rem; }
}

@media (max-width: 768px) and (min-width: 481px) {
    .hero-orb-1 { width: 300px; height: 300px; top: -80px; left: -80px; }
    .hero-orb-2 { width: 260px; height: 260px; bottom: -80px; right: -80px; }
    .hero-orb-3 { width: 200px; height: 200px; }
}

/* ==============================
   Footer Bottom Row & Family Site Dropdown
============================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}
.footer-copy { font-size: 0.9rem; color: #a5a5a5; }
.family-site-wrapper { position: relative; }
.family-site-btn {
    display: flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--border-color);
    padding: 8px 16px; border-radius: 6px; font-size: 0.875rem;
    font-weight: 600; color: var(--text-muted); cursor: pointer;
    transition: var(--transition); white-space: nowrap;
}
.family-site-btn:hover { border-color: var(--primary); color: var(--primary); }
.family-site-btn svg { transition: transform 0.2s ease; flex-shrink: 0; }
.family-site-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.family-site-dropdown {
    position: absolute; bottom: calc(100% + 6px); right: 0;
    background: white; border: 1px solid var(--border-color);
    border-radius: 8px; box-shadow: var(--shadow-hover);
    min-width: 180px; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 50;
}
.family-site-dropdown.open {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.family-site-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; font-size: 0.875rem; font-weight: 600;
    color: var(--text-main); border-bottom: 1px solid var(--border-color);
    transition: background 0.15s;
}
.family-site-dropdown a:last-child { border-bottom: none; }
.family-site-dropdown a:hover { background: var(--bg-secondary); color: var(--primary); }
.family-site-dropdown a svg { color: var(--primary); flex-shrink: 0; }

/* Privacy Policy Button & Modal */
.privacy-btn {
    background: none; border: 1px solid var(--border-color); border-radius: 6px;
    color: #a5a5a5; font-size: 0.85rem; padding: 6px 14px; cursor: pointer;
    font-family: inherit; transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.privacy-btn:hover { border-color: var(--primary); color: var(--primary); }

.privacy-modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.55); align-items: center; justify-content: center;
}
.privacy-modal.open { display: flex; }
.privacy-modal-box {
    background: #ffffff; border-radius: 16px; width: 90%; max-width: 720px;
    max-height: 80vh; display: flex; flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.privacy-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px 20px; border-bottom: 1px solid var(--border-color); flex-shrink: 0;
}
.privacy-modal-header h2 { font-size: 1.15rem; font-weight: 700; margin: 0; }
.privacy-modal-close {
    background: none; border: none; cursor: pointer; color: var(--text-muted);
    padding: 4px; display: flex; border-radius: 6px; transition: color 0.2s;
}
.privacy-modal-close:hover { color: var(--text-primary); }
.privacy-modal-body {
    padding: 24px 28px; overflow-y: auto; line-height: 1.8; font-size: 0.95rem;
    color: var(--text-secondary);
}
.privacy-modal-body h1,.privacy-modal-body h2,.privacy-modal-body h3 {
    color: var(--text-primary); margin-top: 1.5em;
}
.privacy-modal-body h1 { font-size: 1.2rem; }
.privacy-modal-body h2 { font-size: 1.05rem; }
.privacy-modal-body h3 { font-size: 0.95rem; }

/* ==============================
   Approval / 근태 Page
============================== */

/* Reveal animation */
.reveal-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-card.active { opacity: 1; transform: translateY(0); }

/* AC2 Cards */
.ac2-card {
    position: relative; overflow: hidden;
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 40px 36px;
    min-height: 480px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 20px 48px rgba(26,28,28,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.ac2-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(26,28,28,0.1); }

.ac2-badge {
    display: inline-block; padding: 4px 14px; border-radius: 99px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 20px;
    animation: pulse-badge 4s ease-in-out infinite;
}
.ac2-badge--blue  { background: #dbeafe; color: #005A9E; }
.ac2-badge--purple { background: #ede9fe; color: #6d28d9; }
@keyframes pulse-badge {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.85; transform:scale(1.04); }
}

.ac2-title {
    font-size: 2.2rem; font-weight: 800; color: var(--text-primary);
    letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.2;
}
.ac2-desc {
    font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 28px;
}
.ac2-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.ac2-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.98rem; font-weight: 500; color: var(--text-primary);
}
.ac2-features li svg { color: #0078D4; flex-shrink: 0; }
.ac2-features--purple li svg { color: #7c3aed; }

.ac2-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 0.98rem; font-weight: 700;
    color: #0078D4; padding: 0; margin-top: 28px;
    transition: gap 0.25s ease;
}
.ac2-cta:hover { gap: 14px; }
.ac2-cta--purple { color: #7c3aed; }

.ac2-blob {
    position: absolute; right: -60px; bottom: -60px;
    width: 240px; height: 240px; border-radius: 50%;
    filter: blur(60px); pointer-events: none;
    transition: opacity 0.4s ease;
}
.ac2-blob--blue   { background: rgba(0,120,212,0.08); }
.ac2-blob--purple { background: rgba(124,58,237,0.08); }
.ac2-card:hover .ac2-blob { opacity: 1.6; }

.ac2-bg-icon {
    position: absolute; right: 24px; bottom: 24px;
    width: 110px; height: 110px; object-fit: contain;
    opacity: 0.12; pointer-events: none;
    transition: opacity 0.4s ease, transform 0.5s ease;
}
.ac2-card:hover .ac2-bg-icon { opacity: 0.22; transform: rotate(10deg) scale(1.08); }

.approval-feature-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.approval-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.approval-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 108, 189, 0.12);
    border-color: rgba(15, 108, 189, 0.2);
}
.approval-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #2b3990);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.approval-card:hover::before { opacity: 1; }

.ac-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 28px;
}
.ac-icon-img {
    width: 56px; height: 56px; object-fit: contain; flex-shrink: 0;
}
.ac-title {
    font-size: 1.8rem; font-weight: 800; color: var(--text-main);
    margin: 0; letter-spacing: -0.02em;
}
.ac-highlight {
    font-size: 1.15rem; font-weight: 700; color: #333;
    margin-bottom: 24px; line-height: 1.5;
}
.ac-highlight strong {
    background: linear-gradient(120deg, #d4e8fc 0%, #e2d4fd 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
}
.ac-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.ac-desc p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.ac-desc p::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }

.approval-feature-card {
    background: white; border: 1px solid var(--border-color); border-radius: 16px;
    padding: 32px 28px; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.approval-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 108, 189, 0.1);
    border-color: rgba(15, 108, 189, 0.25);
}
.approval-feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; background: #f0f6ff; color: var(--primary);
}
.approval-feature-name { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.approval-feature-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.biz-service-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.biz-service-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.biz-service-item img { width: 48px; height: 48px; object-fit: contain; }
.biz-service-item span { font-size: 0.78rem; color: #555; text-align: center; }

@media (max-width: 768px) {
    .approval-feature-wrapper { grid-template-columns: 1fr; }
    .biz-service-grid { grid-template-columns: repeat(5, 1fr); }
    .approval-hero-h1 { font-size: 2.2rem !important; }
    .approval-card-title { font-size: 1.6rem !important; }
    .approval-card-price { font-size: 2rem !important; }
}
@media (max-width: 560px) {
    .biz-service-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .biz-service-item img { width: 40px; height: 40px; }
    .approval-hero-h1 { font-size: 1.9rem !important; }
    .approval-card-title { font-size: 1.4rem !important; }
    .approval-card-price { font-size: 1.7rem !important; }
}

