/* ===== Samsung-Inspired Premium Design System ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary - Samsung Blue */
    --primary: #1428A0;
    --primary-dark: #0D1B6F;
    --primary-light: #2962FF;
    --primary-50: #E8EAF6;
    --primary-100: #C5CAE9;

    /* Accent - Electric Blue */
    --accent: #2962FF;
    --accent-light: #448AFF;
    --accent-50: #E3F2FD;

    /* Neutral - Premium White Tone */
    --white: #FFFFFF;
    --gray-50: #FAFBFC;
    --gray-100: #F5F7FA;
    --gray-200: #EBEEF3;
    --gray-300: #D1D5DC;
    --gray-400: #9199A5;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Background gradients */
    --bg-gradient: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
    --bg-subtle: #F8FAFC;

    /* Semantic */
    --success: #00A86B;
    --success-light: #E6F7F1;
    --danger: #E53935;
    --danger-light: #FFEBEE;
    --warning: #FF9800;
    --warning-light: #FFF8E1;
    --gold: #FFB300;

    /* Premium Shadows - Softer, more elegant */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 12px rgba(20, 40, 160, 0.06);
    --shadow-hover: 0 8px 24px rgba(20, 40, 160, 0.12);

    /* Border & Radius - More rounded for premium feel */
    --border: #E8ECF0;
    --border-light: #F0F3F6;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transition - Smoother animations */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #1F2937; /* 명시적 다크 컬러 - fallback */
    color: var(--gray-800);
    background: #FFFFFF;
    background: var(--white);
    overflow-x: hidden;
    /* Improve text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Prevent text selection on UI elements */
button, .btn, .filter-btn, .nav-link {
    -webkit-user-select: none;
    user-select: none;
}

/* Improve touch interactions */
@media (hover: none) and (pointer: coarse) {
    .btn, .filter-btn, .product-cta, a.product-cta {
        -webkit-tap-highlight-color: transparent;
    }

    .btn:active, .filter-btn:active, a.product-cta:active {
        transform: scale(0.98);
    }
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography System ===== */
/*
 * Typography Scale (Silicon Valley Standard)
 * - Minimum font size: 13px (mobile), 14px (desktop)
 * - Line height: 1.4 headings, 1.6+ body
 * - Contrast: WCAG AA 4.5:1 minimum
 */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.35;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.2; }
h2 { font-size: clamp(26px, 4vw, 36px); line-height: 1.25; }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: clamp(17px, 2vw, 20px); }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
    line-height: 1.7;
    color: var(--gray-700);
}

/* Accessible minimum font size */
small, .text-sm {
    font-size: 13px; /* Never below 13px */
    line-height: 1.5;
}

.text-xs {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.text-primary { color: #1428A0; color: var(--primary); }
.text-accent { color: #2962FF; color: var(--accent); }
.text-danger { color: #E53935; color: var(--danger); }
.highlight { color: #1428A0; color: var(--primary); }
.highlight-danger { color: #E53935; color: var(--danger); }

/* Muted text - use sparingly */
.text-muted {
    color: var(--gray-500);
}

/* ===== Buttons - Samsung Style ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(20, 40, 160, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(20, 40, 160, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #448AFF 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(41, 98, 255, 0.25);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-pulse {
    animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(20, 40, 160, 0.3); }
    50% { box-shadow: 0 4px 32px rgba(20, 40, 160, 0.5); }
}

/* ===== Badges ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-gold {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #92400e !important; /* 강제 텍스트 색상 */
    border: 1px solid #fcd34d !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.badge-light {
    background: #FFFFFF !important;
    color: #374151 !important;
    border: 1px solid #E8ECF0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== Hero Text Colors (visibility fix) ===== */
.hero-content {
    color: #111827 !important;
}

.hero-title {
    color: #111827 !important;
}

.hero-title .highlight,
.hero-title .highlight strong {
    color: #1428A0 !important;
}

.hero-subtitle {
    color: #4B5563 !important;
}

.hero-subtitle strong {
    color: #111827 !important;
}

.hero-feature .feature-text strong {
    color: #111827 !important;
}

.hero-feature .feature-text span {
    color: #6B7280 !important;
}

.hero-trust span {
    color: #4B5563 !important;
}

/* ===== Section Styles - Premium ===== */
.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary-50) 0%, #E8EAF6 100%);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid rgba(20, 40, 160, 0.1);
}

.section-badge.light {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.75;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ===== Top Bar - Premium ===== */
.top-bar {
    background: var(--gray-800);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 12px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.top-bar-left .divider {
    color: var(--gray-500);
}

.top-bar-right {
    display: flex;
    gap: 28px;
}

.top-bar-right a:hover { color: var(--accent); }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark.light {
    background: rgba(255,255,255,0.1);
}

.logo-icon {
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gray-900);
    background: var(--gray-50);
}

/* 파트너 모집 링크 강조 스타일 */
.nav-item.highlight .nav-link.partner-link {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: var(--gray-900);
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 16px;
}

.nav-item.highlight .nav-link.partner-link:hover {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.mobile-nav-group.partner-highlight .partner-link {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: var(--gray-900) !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    margin-top: 8px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
}

.nav-dropdown a:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

/* Header CTA */
.header-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
}

/* ===== Hero Section - Samsung Premium ===== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--gray-50) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(20, 40, 160, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/about-i2-pc.webp') center/cover no-repeat;
    opacity: 0.05;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
    color: #111827 !important; /* 기본 텍스트 색상 강제 */
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #111827 !important; /* 강제 다크 컬러 */
    margin-bottom: 24px;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-title .highlight {
    color: #1428A0 !important; /* 강제 프라이머리 컬러 */
}

.hero-title .highlight strong {
    color: #1428A0 !important;
    font-weight: 800;
    /* 그라데이션 제거 - 가시성 문제 해결 */
    /*
    그라데이션을 원하면 아래 주석 해제:
    background: linear-gradient(135deg, #1428A0 0%, #2962FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    */
}

.hero-subtitle {
    font-size: 20px;
    color: #4B5563 !important; /* 강제 그레이 컬러 */
    line-height: 1.75;
    margin-bottom: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.hero-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 12px;
}

.feature-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111827 !important; /* 강제 다크 컬러 */
}

.feature-text span {
    font-size: 14px;
    color: #6B7280 !important; /* 강제 그레이 컬러 */
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust span {
    font-size: 14px;
    color: #4B5563 !important; /* 강제 그레이 컬러 */
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-partners-label {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280; /* 명시적 그레이 컬러 */
    color: var(--gray-500);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.hero-partners-logos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-partner-img {
    height: 28px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

.hero-partner-img:hover {
    transform: scale(1.05);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
}

.hero-card.main-card {
    padding: 0;
}

.card-header {
    padding: 16px 24px;
    background: var(--primary);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.card-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-body {
    padding: 24px;
}

.card-amount {
    margin-bottom: 24px;
}

.amount-label {
    display: block;
    font-size: 14px;
    color: #4B5563; /* 명시적 그레이 */
    color: var(--gray-600);
    margin-bottom: 4px;
}

.amount-value {
    font-size: 36px;
    font-weight: 800;
    color: #1428A0; /* 명시적 프라이머리 */
    color: var(--primary);
    letter-spacing: -0.02em;
}

.amount-value small {
    font-size: 18px;
    font-weight: 600;
    margin-left: 4px;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    font-size: 14px;
    color: #4B5563; /* 명시적 그레이 */
    color: var(--gray-600);
}

.detail-row strong {
    font-size: 14px;
    font-weight: 600;
    color: #111827; /* 명시적 다크 */
    color: var(--gray-900);
}

/* Sub Cards */
.hero-card.sub-card,
.hero-card.sub-card-2 {
    position: absolute;
    padding: 16px 20px;
}

.hero-card.sub-card {
    top: 20px;
    right: -20px;
}

.hero-card.sub-card-2 {
    bottom: 60px;
    right: -30px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-icon {
    display: flex;
}

.mini-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111827; /* 명시적 다크 */
    color: var(--gray-900);
}

.mini-stat span {
    font-size: 13px;
    color: #4B5563; /* 명시적 그레이 */
    color: var(--gray-600);
}

/* ===== Stats Section - Impact Version ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.stats-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.stats-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

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

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stat-item.highlight {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.stat-item.highlight .stat-icon {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-item.highlight .stat-number {
    color: #FFC107;
}

.stat-unit {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.9;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin-bottom: 16px;
}

.stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 2px;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: left;
    transform: scaleX(0);
}

.stat-bar.gold span {
    background: linear-gradient(90deg, #FFC107 0%, #FFD54F 100%);
}

@keyframes barGrow {
    to { transform: scaleX(1); }
}

/* Urgency Timer Box */
.urgency-timer-box {
    margin-top: 48px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.urgency-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.urgency-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 4px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-item {
    background: var(--gray-900);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 56px;
    text-align: center;
}

.countdown-item span:first-child {
    font-size: 24px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-item small {
    font-size: 10px;
    opacity: 0.7;
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-400);
}

.urgency-slots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 32px;
    border-left: 1px solid var(--gray-200);
}

.slots-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.slots-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--danger);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.slots-unit {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
}

/* ===== Trust Logos Section ===== */
.trust-logos-section {
    background: var(--white);
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-logos-title {
    text-align: center;
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.trust-logos-title strong {
    color: var(--primary);
    font-weight: 700;
}

.trust-logos-track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-logos-slide {
    display: flex;
    gap: 48px;
    animation: scroll 30s linear infinite;
}

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

.trust-logo-item {
    flex-shrink: 0;
}

.trust-logo-item img {
    height: 32px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

.trust-logo-item:hover img {
    transform: scale(1.05);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
}

.pain-point {
    background: var(--gray-50);
    border-left: 3px solid var(--gray-300);
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 15px;
    color: var(--gray-600);
}

.solution-box {
    background: var(--accent-50);
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 24px;
}

.solution-box h4 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.solution-box p {
    color: var(--gray-700);
    margin: 0;
    font-size: 15px;
}

.about-points {
    margin-top: 32px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--gray-700);
}

.about-point svg {
    color: var(--accent);
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.about-image {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.placeholder-content {
    text-align: center;
    color: var(--gray-400);
}

.placeholder-icon {
    display: block;
    margin-bottom: 16px;
}

/* ===== Visual Banner ===== */
.visual-banner {
    background: var(--primary);
    padding: 0;
    overflow: hidden;
}

.visual-banner-content {
    display: flex;
    align-items: center;
}

.visual-banner-images {
    display: flex;
    flex: 1;
}

.banner-img {
    flex: 1;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.9);
    transition: var(--transition);
}

.banner-img:hover {
    filter: brightness(1);
}

.visual-banner-text {
    padding: 40px 60px;
    text-align: center;
    background: var(--primary);
    min-width: 280px;
}

.visual-banner-text span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.visual-banner-text strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 1024px) {
    .visual-banner-content {
        flex-direction: column;
    }

    .visual-banner-images {
        width: 100%;
    }

    .banner-img {
        height: 150px;
    }

    .visual-banner-text {
        width: 100%;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .visual-banner-images {
        flex-wrap: wrap;
    }

    .banner-img {
        width: 50%;
        flex: none;
        height: 120px;
    }

    .visual-banner-text strong {
        font-size: 18px;
    }
}

/* ===== Services Overview ===== */
.services-overview {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.services-overview::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 60%;
    background: url('images/about-i4-pc.webp') center/cover no-repeat;
    opacity: 0.04;
    mask-image: linear-gradient(to top left, black, transparent);
    -webkit-mask-image: linear-gradient(to top left, black, transparent);
}

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

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    /* Text truncation safety */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Partner Strip */
.partner-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 48px;
}

.strip-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.strip-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.strip-logos img {
    height: 28px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

.strip-logos img:hover {
    transform: scale(1.05);
}

/* ===== Products Section ===== */
.products-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    color: var(--gray-700);
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.25);
}

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

.products-grid > .product-card {
    min-height: 520px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid transparent;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(20, 40, 160, 0.15);
}

.product-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    z-index: 1;
    letter-spacing: 0.02em;
}

.product-ribbon.green {
    background: linear-gradient(135deg, var(--success) 0%, #34D399 100%);
}

.product-header {
    padding: 28px 28px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.product-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-title-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.product-tag {
    font-size: 14px;
    color: var(--gray-500);
}

.product-desc {
    padding: 20px 28px;
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.75;
}

.product-specs {
    padding: 0 28px 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.spec-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.spec-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-800);
}

.spec-value.highlight {
    color: var(--primary);
}

/* Product CTA - used as anchor link */
a.product-cta {
    display: block;
    margin: auto 24px 24px;
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius);
    transition: var(--transition);
}

a.product-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Product CTA - used as wrapper div */
div.product-cta {
    padding: 16px 24px;
    border-top: 1px solid var(--border-light);
}

div.product-cta .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: url('images/about-i3.webp') center/cover no-repeat;
    opacity: 0.05;
    mask-image: linear-gradient(to right, black, transparent);
    -webkit-mask-image: linear-gradient(to right, black, transparent);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: var(--border);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-500);
    transition: var(--transition);
}

.process-step:hover .step-number {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 15px;
    color: var(--gray-600);
}

/* ===== Qualification Section ===== */
.qualification-section {
    padding: 100px 0;
    background: var(--white);
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.qual-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.qual-card.yes {
    background: var(--accent-50);
    border-color: var(--accent);
}

.qual-card.no {
    background: var(--gray-50);
}

.qual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.qual-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.qual-card.yes .qual-icon {
    background: var(--accent);
    color: var(--white);
}

.qual-card.no .qual-icon {
    background: var(--gray-300);
    color: var(--white);
}

.qual-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.qual-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qual-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.qual-note {
    background: var(--warning-light);
    padding: 20px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-700);
}

/* ===== Documents Section ===== */
.documents-section {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.doc-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.doc-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.doc-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.doc-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ===== Case Section ===== */
.case-section {
    padding: 100px 0;
    background: var(--white);
}

.case-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.case-card {
    flex: 0 0 360px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
}

.case-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.case-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.case-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.case-type {
    font-size: 14px;
    color: var(--gray-600);
}

.case-problem {
    background: var(--danger-light);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.case-problem p {
    font-size: 15px;
    color: var(--danger);
    line-height: 1.6;
}

.case-solution {
    background: var(--accent-50);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.case-solution p {
    font-size: 15px;
    color: var(--accent);
    line-height: 1.6;
}

.case-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.result-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.result-rate {
    font-size: 14px;
    color: var(--gray-600);
}

/* ===== PG System Section ===== */
.pg-system-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.subsection-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.pg-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.pg-intro h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pg-intro p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pg-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--border-light);
}

.pg-benefits li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.pg-intro-visual img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Payment Solutions */
.payment-solutions {
    margin-bottom: 80px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solution-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
}

.solution-icon img {
    max-width: 100%;
    max-height: 100%;
}

.solution-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.solution-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* PG vs VAN */
.pg-van-comparison {
    margin-bottom: 80px;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.comp-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.pg-card {
    border-color: var(--primary);
    border-width: 2px;
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.comp-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.comp-header h4 {
    font-size: 20px;
    font-weight: 700;
}

.comp-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.comp-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
}

/* Effects Grid */
.pg-effects {
    margin-bottom: 80px;
}

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

.effect-card {
    background: var(--primary);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.effect-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.effect-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.effect-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

/* 24h System */
.system-24h {
    background: var(--gray-900);
    padding: 48px;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.system-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.system-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-400);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-800);
}

.system-info li strong {
    color: var(--accent-light);
}

.system-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sys-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
}

.sys-feature svg {
    color: var(--accent-light);
    margin-bottom: 8px;
}

.sys-feature span {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
}

/* ===== Partners Section - Premium ===== */
.partners-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.partners-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.partners-intro p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

.card-partners,
.van-partners {
    margin-bottom: 56px;
}

.partners-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-partners-grid,
.van-partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.card-partner-item,
.van-partner-item {
    padding: 18px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card-partner-item:hover,
.van-partner-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-partner-item img,
.van-partner-item img {
    height: 32px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

.card-partner-item:hover img,
.van-partner-item:hover img {
    opacity: 1;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 56px;
    padding-top: 56px;
    border-top: 1px solid var(--border);
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}

.cert-item svg {
    color: var(--primary);
}

/* ===== Trust Banner - Clean White & Blue Style ===== */
.trust-banner {
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
    padding: 72px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    pointer-events: none;
}

.trust-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-banner-content h3 {
    color: var(--gray-900);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}

.trust-banner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-banner-logos img {
    height: 36px;
    width: auto;
    padding: 14px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    object-fit: contain;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-banner-logos img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(20, 40, 160, 0.12);
    border-color: var(--primary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid var(--gray-200);
}

.trust-badges svg {
    stroke: var(--primary);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.faq-cat-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--gray-50);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.faq-cat-btn:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}

.faq-cat-btn.active {
    color: var(--primary);
    background: var(--primary-50);
    border-color: var(--primary-100);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-arrow {
    transition: var(--transition);
    color: var(--gray-400);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== News Section ===== */
.news-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.news-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.view-all {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

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

.news-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.news-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-50);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    /* Text truncation safety */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
    /* Text truncation safety */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== Consultation Section - Premium Light ===== */
.consultation-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(20, 40, 160, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.consult-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.consult-info {
    color: var(--gray-800);
}

.consult-visual {
    margin-bottom: 36px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.consult-img {
    width: 100%;
    height: auto;
    display: block;
}

.consult-header {
    margin-bottom: 36px;
}

.consult-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.consult-header p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

.urgency-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1px solid #FCD34D;
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.urgency-icon {
    color: #D97706;
}

.urgency-text strong {
    display: block;
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 700;
}

.urgency-text span {
    color: var(--gray-600);
    font-size: 13px;
}

.consult-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
}

.benefit-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.benefit-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.benefit-item span {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Consultation Form - Premium */
.consult-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--gray-50);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-50);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-agreement {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
}

.form-trust-logos {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.trust-label {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.form-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-logos img {
    height: 24px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

.form-logos img:hover {
    transform: scale(1.05);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

.contact-map {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 14px;
    color: var(--gray-500);
}

.detail-item a {
    color: var(--primary);
}

/* ===== Footer - Premium Light ===== */
.footer {
    background: var(--gray-50);
    color: var(--gray-600);
    padding-top: 80px;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-main { color: var(--gray-900); }
.footer-logo .logo-sub { color: var(--gray-400); }

.footer-desc {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--gray-500);
    line-height: 1.7;
}

.footer-certifications {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-certifications span {
    font-size: 12px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-weight: 500;
}

.footer-partner-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.footer-partner-logos img {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-partner-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    padding: 8px 0;
    transition: var(--transition);
}

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

.footer-phone a {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.footer-time {
    font-size: 13px;
    margin-top: 8px;
    color: var(--gray-400);
}

.footer-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.2);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 40, 160, 0.3);
}

.footer-info {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.footer-info p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-700);
}

.footer-legal {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin: 28px 0;
}

.footer-legal p {
    font-size: 12px;
    line-height: 1.9;
    color: var(--gray-600);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-policy {
    display: flex;
    gap: 24px;
}

.footer-policy a {
    font-size: 13px;
    color: var(--gray-600);
    transition: var(--transition);
}

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

/* ===== Floating Actions ===== */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-actions.visible {
    opacity: 1;
    transform: translateY(0);
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.float-btn.phone {
    background: var(--accent);
    color: var(--white);
}

.float-btn.consult {
    background: var(--primary);
    color: var(--white);
}

.float-btn.top {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--border);
}

.float-btn:hover {
    transform: scale(1.05);
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--gray-500);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-100);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Success Modal */
.success-modal .modal-body {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--success);
}

.success-modal h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-modal p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-500);
}

.mobile-nav {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav-group {
    margin-bottom: 24px;
}

.mobile-nav-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.mobile-nav-title.single {
    padding: 12px 0;
}

.mobile-nav-group a:not(.mobile-nav-title) {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-light);
}

.mobile-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.mobile-phone {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--gray-600);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-card.sub-card,
    .hero-card.sub-card-2 {
        position: static;
    }

    .hero-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-card.main-card {
        flex: 1 1 100%;
    }

    .hero-card.sub-card,
    .hero-card.sub-card-2 {
        flex: 1;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-badges {
        justify-content: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-partners {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .pg-intro {
        grid-template-columns: 1fr;
    }

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

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .effects-grid {
        grid-template-columns: 1fr;
    }

    .system-24h {
        grid-template-columns: 1fr;
    }

    .consult-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .qual-grid {
        grid-template-columns: 1fr;
    }

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

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

    .header-inner {
        height: 64px;
    }

    .main-nav,
    .header-cta,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.05;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 52px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero-partners {
        flex-direction: column;
        gap: 12px;
    }

    .hero-partners-logos {
        justify-content: center;
    }

    .stats-section {
        padding: 48px 0;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .services-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .doc-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 32px;
    }

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

    .system-features {
        grid-template-columns: 1fr;
    }

    .partner-strip {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .strip-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .floating-actions {
        bottom: 16px;
        right: 16px;
    }

    .float-btn span {
        display: none;
    }

    .float-btn {
        padding: 14px;
        min-width: 52px;
        min-height: 52px;
    }

    .certifications {
        flex-direction: column;
        gap: 16px;
    }

    .case-card {
        flex: 0 0 300px;
    }

    /* Visual Banner Tablet */
    .visual-banner-content {
        flex-direction: column;
    }

    .visual-banner-images {
        width: 100%;
    }

    .banner-img {
        height: 140px;
    }

    /* About Section Tablet */
    .about-main-img {
        max-height: 300px;
        object-fit: cover;
    }

    .about-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        max-width: none;
    }

    /* PG Section Tablet */
    .pg-flow-diagram {
        max-width: 100%;
    }

    /* Comparison Tablet */
    .comparison-table {
        font-size: 14px;
    }

    /* Process Timeline Tablet */
    .process-timeline {
        flex-direction: column;
        gap: 0;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .process-step .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content {
        max-width: none;
    }

    .step-icon {
        margin: 0 0 12px 0;
    }

    .process-line {
        display: none;
    }

    /* Partners Section Tablet */
    .main-partners-grid {
        grid-template-columns: 1fr;
    }

    .card-partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .van-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Consultation Tablet */
    .consult-visual {
        max-height: 250px;
        overflow: hidden;
    }

    .urgency-box {
        flex-direction: column;
        text-align: center;
    }

    /* Contact Tablet */
    .contact-img {
        min-height: 250px;
    }

    /* Touch Improvements */
    .filter-btn,
    .faq-cat-btn {
        min-height: 44px;
    }

    .nav-link,
    .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .checkbox-label {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

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

    /* Hero Mobile */
    .hero {
        padding: 32px 0 48px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-title .highlight {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-feature {
        padding: 10px 8px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-text strong {
        font-size: 13px;
    }

    .feature-text span {
        font-size: 11px;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-actions .btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero-partners-logos {
        gap: 12px;
    }

    .hero-partner-img {
        height: 20px;
    }

    /* Hero Cards Mobile */
    .hero-visual {
        gap: 12px;
    }

    .hero-card.main-card {
        padding: 20px;
    }

    .hero-card.sub-card,
    .hero-card.sub-card-2 {
        padding: 16px;
    }

    .amount-value {
        font-size: 28px;
    }

    .mini-stat {
        padding: 10px;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 32px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Visual Banner Mobile */
    .visual-banner-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .banner-img {
        height: 100px;
    }

    .visual-banner-text {
        padding: 24px 16px;
    }

    .visual-banner-text span {
        font-size: 13px;
    }

    .visual-banner-text strong {
        font-size: 16px;
    }

    /* Services Mobile */
    .services-overview {
        padding: 60px 0;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    /* Products Mobile */
    .products-section {
        padding: 60px 0;
    }

    .products-filter {
        gap: 8px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .products-grid > .product-card {
        min-height: auto;
    }

    .product-card {
        border-radius: var(--radius-lg);
    }

    .product-header {
        padding: 20px 16px;
    }

    .product-desc {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .product-specs {
        padding: 16px;
        gap: 12px;
    }

    .spec-item {
        padding: 8px 0;
    }

    .spec-label,
    .spec-value {
        font-size: 13px;
    }

    .product-benefits {
        padding: 0 16px 12px;
    }

    .product-benefits span {
        font-size: 12px;
        padding: 5px 10px;
    }

    a.product-cta {
        margin: auto 16px 16px;
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Comparison Mobile */
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .savings-calculator {
        padding: 36px 24px;
    }

    .calc-header h3 {
        font-size: 20px;
    }

    .calc-item {
        padding: 28px 24px;
    }

    .calc-value {
        font-size: 36px;
    }

    .calc-result {
        font-size: 16px;
        padding: 24px;
    }

    .calc-result strong {
        font-size: 28px;
    }

    /* PG Section Mobile */
    .pg-system-section {
        padding: 60px 0;
    }

    .pg-intro-content h3 {
        font-size: 18px;
    }

    .pg-benefits li {
        font-size: 14px;
    }

    .solution-card {
        padding: 24px 20px;
    }

    .solution-icon {
        width: 56px;
        height: 56px;
    }

    .solution-card h4 {
        font-size: 15px;
    }

    .comp-card {
        padding: 24px 20px;
    }

    .effect-card {
        padding: 24px 20px;
    }

    /* Process Mobile */
    .process-section {
        padding: 60px 0;
    }

    .process-step .step-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 13px;
    }

    .step-time {
        font-size: 11px;
    }

    /* Qualification Mobile */
    .qualification-section {
        padding: 60px 0;
    }

    .qual-card {
        padding: 24px 20px;
    }

    .qual-list li {
        font-size: 14px;
        padding: 10px 0;
    }

    /* Documents Mobile */
    .documents-section {
        padding: 60px 0;
    }

    .doc-card {
        padding: 24px 20px;
    }

    .doc-card h4 {
        font-size: 16px;
    }

    .doc-card li {
        font-size: 13px;
    }

    /* Cases Mobile */
    .cases-section {
        padding: 60px 0;
    }

    .case-card {
        flex: 0 0 280px;
        padding: 20px;
    }

    .case-header {
        gap: 12px;
    }

    .case-avatar {
        width: 44px;
        height: 44px;
    }

    .case-info h4 {
        font-size: 15px;
    }

    .case-problem,
    .case-solution {
        padding: 12px;
        font-size: 13px;
    }

    /* Partners Mobile */
    .partners-section {
        padding: 60px 0;
    }

    .main-partner-card {
        padding: 16px;
        gap: 12px;
    }

    .main-partner-logo {
        width: 48px;
        height: 48px;
    }

    .main-partner-info strong {
        font-size: 14px;
    }

    .card-partners-grid,
    .van-partners-grid {
        gap: 12px;
    }

    .card-partner-item,
    .van-partner-item {
        padding: 12px;
    }

    .card-partner-item img,
    .van-partner-item img {
        height: 24px;
    }

    /* News Mobile */
    .news-section {
        padding: 60px 0;
    }

    .news-card {
        padding: 20px;
    }

    .news-card h3 {
        font-size: 16px;
    }

    /* Consultation Mobile */
    .consultation-section {
        padding: 60px 0;
    }

    .consult-visual {
        margin-bottom: 24px;
    }

    .consult-header h2 {
        font-size: 24px;
    }

    .urgency-box {
        padding: 16px;
        gap: 12px;
    }

    .consult-form {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 16px;
        font-size: 16px;
    }

    /* Contact Mobile */
    .contact-section {
        padding: 60px 0;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-img {
        min-height: 200px;
    }

    /* Footer Mobile */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links h4 {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 24px;
        font-size: 12px;
    }

    /* Floating Actions Mobile */
    .floating-actions {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
    }

    .float-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Partner Strip Mobile */
    .partner-strip {
        padding: 20px 16px;
    }

    .strip-label {
        font-size: 12px;
    }

    .strip-logos img {
        height: 24px;
    }

    /* Trust Banner Mobile */
    .trust-banner {
        padding: 48px 0;
    }

    .trust-banner-content h3 {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .trust-banner-logos {
        gap: 10px;
        margin-bottom: 28px;
    }

    .trust-banner-logos img {
        height: 26px;
        padding: 10px 14px;
        border-radius: 8px;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badges span {
        font-size: 11px;
        padding: 8px 12px;
    }

    /* Form Trust Logos Mobile */
    .form-trust-logos img {
        height: 20px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: none;
    }

    /* Modal Mobile */
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 16px;
    }

    /* Scroll improvements */
    .cases-slider {
        margin: 0 calc(-50vw + 50%);
        padding: 25px 0 15px 0;
    }

    .cases-slider::before,
    .cases-slider::after {
        width: 60px;
    }

    .cases-track {
        animation-duration: 30s;
        gap: 24px;
    }

    .case-card {
        flex: 0 0 320px;
    }

    /* Touch friendly improvements */
    .checkbox-label {
        padding: 12px 0;
    }

    .privacy-link {
        padding: 4px 0;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .visual-banner-images {
        grid-template-columns: 1fr;
    }

    .banner-img {
        height: 120px;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group input.error,
.form-group select.error {
    border-color: var(--danger);
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* [P3 FIX] 인라인 유효성 검사 에러 메시지 스타일 */
.form-group .error-message {
    display: none;
    font-size: 12px;
    color: var(--danger);
    margin-top: 4px;
    padding-left: 2px;
}

.form-group.has-error .error-message {
    display: block;
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
}

/* [P3 FIX] 성공 상태 스타일 */
.form-group.is-valid input,
.form-group.is-valid select {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.05);
}

/* [P3 FIX] 필수 필드 별표 스타일 개선 */
.form-group label .required {
    color: var(--danger);
    font-weight: 600;
}

/* ===== MISSING CLASSES FIX ===== */

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--primary-100);
}

.header-phone svg {
    flex-shrink: 0;
}

/* Header CTA Fix */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--primary-dark);
}

/* About Card */
.about-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 280px;
}

.about-card-icon {
    margin-bottom: 12px;
}

.about-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.about-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.placeholder-text {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* Product Benefits */
.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 24px 16px;
}

.product-benefits span {
    font-size: 13px;
    color: var(--gray-700);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

/* Product Ribbon Green */
.product-ribbon.green {
    background: var(--success);
}

/* Spec Value Good */
.spec-value.good {
    color: var(--success);
}

/* Products CTA */
.products-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.products-cta p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* ===== Comparison Section ===== */
.comparison-section {
    padding: 100px 0;
    background: var(--white);
}

.comparison-wrapper {
    margin-bottom: 48px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--gray-50);
}

.comparison-table th {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 18px 24px;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--gray-700);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.col-bad {
    background: rgba(220, 38, 38, 0.03);
}

.col-good {
    background: rgba(5, 150, 105, 0.05);
}

.bad {
    color: var(--danger);
    font-weight: 600;
}

.good {
    color: var(--success);
    font-weight: 600;
}

/* Savings Calculator - Clean White & Blue Design */
.savings-calculator {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(20, 40, 160, 0.12);
    position: relative;
    overflow: hidden;
}

.savings-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    pointer-events: none;
}

.calc-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.calc-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.calc-header p {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 500;
}

.calc-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.calc-item {
    text-align: center;
    padding: 36px 44px;
    border-radius: 20px;
    min-width: 220px;
    position: relative;
    transition: transform 0.3s ease;
}

.calc-item:hover {
    transform: translateY(-4px);
}

.calc-item.bad {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.calc-item.good {
    background: linear-gradient(135deg, var(--primary-50) 0%, #E8EAF6 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(20, 40, 160, 0.15);
}

.calc-label {
    display: inline-block;
    font-size: 13px;
    margin-bottom: 16px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.calc-item.bad .calc-label {
    background: var(--gray-200);
    color: var(--gray-500);
}

.calc-item.good .calc-label {
    background: var(--primary);
    color: var(--white);
}

.calc-value {
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
}

.calc-item.bad .calc-value {
    color: var(--gray-400);
    text-decoration: line-through;
    text-decoration-color: var(--gray-300);
}

.calc-item.good .calc-value {
    color: var(--primary);
}

.calc-sub {
    display: block;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

.calc-item.bad .calc-sub {
    color: var(--gray-400);
}

.calc-item.good .calc-sub {
    color: var(--primary-light);
}

.calc-arrow {
    color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-arrow svg {
    width: 40px;
    height: 40px;
}

.calc-result {
    text-align: center;
    font-size: 20px;
    padding: 28px 40px;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border-radius: 16px;
    color: var(--gray-900);
    border: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.25);
}

.calc-result strong {
    color: var(--gray-900);
    font-size: 32px;
    font-weight: 900;
    display: inline-block;
    margin-right: 8px;
}

/* ===== Process Timeline ===== */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-500);
    margin-bottom: 20px;
    transition: var(--transition);
}

.process-step:hover .step-number,
.process-step.highlight .step-number {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.process-step.highlight .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.step-content {
    max-width: 160px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.step-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 12px;
}

.step-time {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.process-line {
    flex: 1;
    height: 3px;
    background: var(--border);
    margin-top: 32px;
    position: relative;
}

.process-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--border);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ===== PG Section Image Placeholders ===== */
.pg-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-intro-visual .image-placeholder,
.solution-icon .image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-50), var(--gray-100));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.solution-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.solution-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* PG Flow Diagram */
.pg-flow-diagram {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Contact Image */
.contact-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ===== Responsive Fixes ===== */
@media (max-width: 1024px) {
    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
    }

    .calc-content {
        flex-direction: column;
        gap: 20px;
    }

    .calc-arrow {
        transform: rotate(90deg);
    }

    .calc-item {
        width: 100%;
        max-width: 320px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 0;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 24px;
        padding: 24px 0;
    }

    .process-step .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content {
        max-width: none;
    }

    .step-icon {
        margin: 0 0 12px 0;
    }

    .process-line {
        display: none;
    }

    .about-card {
        position: static;
        margin-top: 24px;
        max-width: none;
    }
}

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

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .savings-calculator {
        padding: 24px;
    }

    .calc-header h3 {
        font-size: 18px;
    }

    .calc-value {
        font-size: 22px;
    }

    .calc-result {
        font-size: 16px;
    }

    .calc-result strong {
        font-size: 20px;
    }

    .product-benefits {
        padding: 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .calc-item {
        padding: 24px 20px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto 12px;
    }
}

/* ===== Documents Section Grid ===== */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.doc-card ul {
    margin-top: 16px;
}

.doc-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-card li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
}

.doc-card li:last-child {
    border-bottom: none;
}

.docs-tip {
    background: var(--warning-light);
    padding: 20px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.docs-tip strong {
    color: var(--warning);
    white-space: nowrap;
}

.docs-tip p {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

/* ===== Cases Section - Premium ===== */
.cases-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.cases-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(20, 40, 160, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cases-slider {
    overflow: hidden;
    margin: 0 calc(-50vw + 50%);
    padding: 30px 0 20px 0;
    position: relative;
    width: 100vw;
}

.cases-slider::before,
.cases-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cases-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.cases-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.cases-track {
    display: flex;
    gap: 32px;
    padding: 30px 0 20px 0;
    animation: casesMarquee 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.cases-track:hover {
    animation-play-state: paused;
}

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

.case-card {
    flex: 0 0 380px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(20, 40, 160, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(20, 40, 160, 0.15);
    border-color: rgba(20, 40, 160, 0.15);
}

.case-card:hover::before {
    opacity: 1;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.case-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-50) 0%, #E8EAF6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}

.case-info {
    flex: 1;
}

.case-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.case-info span {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

/* [P3 FIX] 후기 인증 배지 및 날짜 스타일 */
.verified-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.review-date {
    display: block;
    font-size: 11px !important;
    color: var(--gray-400) !important;
    margin-top: 2px;
}

.case-problem,
.case-solution {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.case-problem {
    background: rgba(220, 38, 38, 0.08);
    border-left: 3px solid var(--danger);
}

.case-problem strong {
    color: var(--danger);
}

.case-solution {
    background: rgba(13, 148, 136, 0.08);
    border-left: 3px solid var(--accent);
}

.case-solution strong {
    color: var(--accent);
}

.case-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.result-item {
    text-align: center;
    padding: 10px 8px;
    background: rgba(20, 40, 160, 0.03);
    border-radius: 10px;
}

.result-item span {
    display: block;
    font-size: 10px;
    color: var(--gray-400);
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.result-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--gray-800);
}

.cases-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 24px;
}

/* ===== Partners Section - Main Partners ===== */
.main-partners {
    margin-bottom: 48px;
}

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

.main-partner-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.main-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.main-partner-logo {
    width: 72px;
    height: 72px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
}

.main-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.main-partner-info strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.main-partner-info span {
    font-size: 13px;
    color: var(--gray-400);
}

.main-partner-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* ===== Qual Note Fix ===== */
.qual-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--warning-light);
    padding: 20px 24px;
    border-radius: var(--radius);
}

.qual-note svg {
    flex-shrink: 0;
    color: var(--warning);
    margin-top: 2px;
}

.qual-note p {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

/* ===== Responsive for New Sections ===== */
@media (max-width: 1024px) {
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

    .docs-tip {
        flex-direction: column;
        gap: 8px;
    }

    .case-card {
        flex: 0 0 340px;
        padding: 24px;
    }

    .case-result {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .result-item {
        text-align: center;
        padding: 10px 6px;
    }

    .result-item span {
        margin-bottom: 4px;
    }
}

/* ===== UX/UI ENHANCEMENTS ===== */

/* 1. Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* 2. Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.btn:focus-visible,
.filter-btn:focus-visible,
.faq-cat-btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(30, 58, 95, 0.15);
}

.nav-link:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

/* 3. Enhanced Micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Card hover lift effect */
.service-card,
.product-card,
.case-card,
.news-card,
.doc-card,
.qual-card,
.solution-card,
.effect-card,
.main-partner-card {
    will-change: transform;
}

.service-card:hover,
.product-card:hover,
.news-card:hover,
.doc-card:hover,
.solution-card:hover,
.effect-card:hover,
.main-partner-card:hover {
    transform: translateY(-6px);
}

/* Icon animation on hover */
.service-icon,
.step-icon,
.detail-icon,
.solution-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon,
.process-step:hover .step-icon,
.detail-item:hover .detail-icon,
.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: var(--primary-100);
}

/* Button arrow animation */
.btn svg,
.product-cta svg,
a.product-cta svg {
    transition: transform 0.3s ease;
}

.btn:hover svg,
.product-cta:hover svg,
a.product-cta:hover svg {
    transform: translateX(4px);
}

/* 4. Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delays */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.4s; }

/* 5. Mobile Floating CTA */
.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-floating-cta.visible {
    transform: translateY(0);
}

.mobile-floating-cta .cta-inner {
    display: flex;
    gap: 10px;
}

.mobile-floating-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 16px;
    font-size: 15px;
    min-height: 48px;
}

.mobile-floating-cta .btn-phone {
    flex: 0 0 auto;
    width: 48px;
    padding: 0;
}

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

    /* Adjust floating actions position */
    .floating-actions {
        bottom: 80px;
    }

    /* Adjust footer padding for mobile CTA */
    .footer {
        padding-bottom: 80px;
    }
}

/* 6. Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 7. Smooth Section Transitions */
section {
    position: relative;
}

/* Section dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
}

/* 8. Enhanced Visual Hierarchy */
.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-top: 20px;
    border-radius: 2px;
}

.section-header.center::after {
    margin-left: auto;
    margin-right: auto;
}

/* 9. Enhanced Stats Animation */
.stat-number {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

/* 10. Trust Indicator Pulse */
.trust-indicator {
    position: relative;
}

.trust-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: trust-pulse 2s ease-in-out infinite;
}

@keyframes trust-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
    }
}

/* 11. Better Form UX */
.form-group {
    position: relative;
}

.form-group label {
    transition: color 0.2s ease;
}

.form-group:focus-within label {
    color: var(--primary);
}

.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    color: var(--gray-700);
}

/* Input validation states */
.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not([value=""]) {
    border-color: var(--success);
}

.form-group.success input,
.form-group.success select {
    border-color: var(--success);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12l2 2 4-4' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

/* 12. Improved Tooltip */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 12px;
    background: var(--gray-900);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-900);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 100;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

[data-tooltip]:hover::before {
    transform: translateX(-50%) translateY(-4px);
}

/* 13. Skip to Content (Accessibility) */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 16px;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius);
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 16px;
}

/* 14. Better Image Loading */
img {
    background-color: var(--gray-100);
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
    background-color: transparent;
}

/* 15. Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-400) var(--gray-100);
}

/* 16. Print Styles */
@media print {
    .header,
    .floating-actions,
    .mobile-floating-cta,
    .scroll-progress,
    .top-bar {
        display: none !important;
    }

    .hero {
        padding: 20px 0;
        background: none;
    }

    section {
        page-break-inside: avoid;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 12px;
        color: var(--gray-500);
    }
}

/* 17. Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }

    .btn-pulse {
        animation: none;
    }
}

/* 18. High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border: #000;
        --gray-500: #333;
        --gray-600: #222;
    }

    .btn-primary {
        border: 2px solid var(--white);
    }

    .service-card,
    .product-card,
    .news-card {
        border-width: 2px;
    }
}

/* ===== CRO ENHANCEMENTS ===== */

/* Live Notification Banner */
.live-notification {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 997;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    max-width: 400px;
    border: 1px solid var(--border-light);
}

.live-notification.visible {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 20px;
}

.notification-text {
    font-size: 14px;
    color: var(--gray-700);
}

.notification-text strong {
    color: var(--gray-900);
}

.notification-text .amount {
    color: var(--primary);
}

.notification-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    padding: 8px 12px;
    background: var(--primary-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.notification-cta:hover {
    background: var(--primary-100);
}

@media (max-width: 768px) {
    .live-notification {
        bottom: 90px;
        left: 12px;
        right: 12px;
        max-width: none;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

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

/* Hero Urgency Text */
.urgency-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-50) 0%, #E8EAF6 100%);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 8px;
    border: 1px solid var(--primary-100);
    white-space: nowrap;
}

.urgency-text strong {
    color: var(--primary-dark);
    font-weight: 700;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Stats Section Enhancement */
.stat-sub {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
    font-weight: 400;
}

.stat-highlight {
    color: var(--primary);
    font-weight: 800;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

/* Pain Point Cards */
.pain-point-card {
    background: var(--gray-50);
    border-left: 4px solid var(--danger);
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.pain-quote {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.pain-point-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.solution-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    margin-top: 8px;
}

/* Text Colors */
.text-danger { color: var(--danger); }
.text-primary { color: var(--primary); }

/* Comparison Table Wrapper */
.comparison-table-wrap {
    margin-bottom: 48px;
    overflow-x: auto;
}

/* Urgency Box Enhanced */
.urgency-box.urgent {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(249, 115, 22, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.2);
    padding: 24px;
    border-radius: var(--radius-lg);
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.urgency-badge {
    background: var(--danger);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.urgency-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.urgency-check {
    color: var(--success);
    font-weight: 700;
}

/* Case Card Quote */
.case-quote {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    margin-bottom: 18px;
    font-style: normal;
    border-left: 3px solid var(--primary);
    position: relative;
}

.case-quote::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 28px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.case-quote strong {
    color: var(--primary);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(20, 40, 160, 0.1) 0%, rgba(41, 98, 255, 0.1) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

.case-card.featured {
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: 0 8px 32px rgba(20, 40, 160, 0.12);
}

.case-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.case-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    letter-spacing: 0.3px;
}

.case-result .result-item strong.highlight {
    color: var(--primary);
}

.case-result .result-item strong.good {
    color: var(--success);
}

/* Form Note Enhancement */
.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 12px;
    line-height: 1.6;
}

.form-note strong {
    display: block;
    margin-top: 4px;
    color: var(--gray-700);
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .urgency-text {
        font-size: 14px;
        padding: 10px 16px;
        white-space: normal;
        text-align: center;
    }

    .pain-quote {
        font-size: 16px;
    }

    .pain-point-card {
        padding: 16px 20px;
    }

    .urgency-box.urgent {
        padding: 20px;
    }

    .case-quote {
        font-size: 14px;
        padding: 12px;
    }

    .stat-sub {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .urgency-text {
        font-size: 13px;
        display: block;
        text-align: center;
        padding: 10px 14px;
        white-space: normal;
        line-height: 1.5;
    }

    .pain-quote {
        font-size: 15px;
    }

    .solution-highlight {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* ===== COMPREHENSIVE MOBILE OPTIMIZATION ===== */

/* Mobile Header Improvements */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }

    .header-inner {
        padding: 0 16px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .logo-icon {
        font-size: 18px;
    }

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

    .logo-sub {
        font-size: 8px;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        padding: 12px;
    }

    .mobile-menu-btn span {
        height: 2px;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .mobile-menu {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .mobile-menu-inner {
        max-width: 320px;
        width: 85%;
    }

    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-menu-close {
        width: 44px;
        height: 44px;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav {
        padding: 16px 0;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-group {
        padding: 0 20px;
        margin-bottom: 16px;
    }

    .mobile-nav-title {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        padding: 8px 0;
        display: block;
    }

    .mobile-nav-title.single {
        color: var(--gray-800);
        font-size: 15px;
        padding: 12px 0;
    }

    .mobile-nav-group a:not(.mobile-nav-title) {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        color: var(--gray-700);
        border-bottom: 1px solid var(--border-light);
        min-height: 44px;
    }

    .mobile-nav-group a:last-child {
        border-bottom: none;
    }

    .mobile-menu-footer {
        padding: 20px;
        border-top: 1px solid var(--border);
        background: var(--gray-50);
    }

    .mobile-cta {
        display: block;
        background: var(--primary);
        color: var(--white);
        text-align: center;
        padding: 16px;
        border-radius: var(--radius);
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 12px;
        min-height: 52px;
    }

    .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-weight: 500;
        color: var(--gray-700);
        min-height: 48px;
    }
}

/* Hero Mobile Improvements */
@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 24px 0 40px;
    }

    .hero-badges {
        justify-content: center;
        margin-bottom: 20px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.35;
        text-align: center;
    }

    .hero-title .highlight {
        font-size: 20px;
    }

    .hero-title .highlight-danger {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
        text-align: center;
        line-height: 1.6;
    }

    .hero-subtitle strong {
        font-size: 18px;
    }

    .urgency-text {
        font-size: 12px;
        padding: 10px 14px;
        margin-top: 12px;
        line-height: 1.5;
        white-space: normal;
    }

    .hero-features {
        gap: 8px;
        margin: 24px 0;
    }

    .hero-feature {
        padding: 12px 8px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-text {
        text-align: center;
    }

    .feature-text strong {
        font-size: 14px;
        display: block;
    }

    .feature-text span {
        font-size: 11px;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 20px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        min-height: 56px;
        justify-content: center;
    }

    .hero-actions .btn-primary {
        font-weight: 700;
    }

    .hero-trust {
        margin-top: 20px;
        gap: 6px;
    }

    .trust-item {
        font-size: 12px;
        padding: 4px 8px;
    }

    .hero-partners {
        margin-top: 24px;
        padding-top: 20px;
    }

    .hero-partners-text {
        font-size: 12px;
    }

    .hero-partner-img {
        height: 18px;
    }
}

/* Stats Section Mobile - Impact Version */
@media (max-width: 768px) {
    .stats-section {
        padding: 48px 0;
    }

    .stats-header {
        margin-bottom: 32px;
    }

    .stats-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-unit {
        font-size: 16px;
    }

    .stat-label {
        font-size: 12px;
    }

    .urgency-timer-box {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }

    .urgency-slots {
        padding-left: 0;
        border-left: none;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-item {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-unit {
        font-size: 14px;
    }

    .stat-label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .countdown-item {
        padding: 6px 10px;
        min-width: 48px;
    }

    .countdown-item span:first-child {
        font-size: 20px;
    }

    .slots-number {
        font-size: 28px;
    }
}

/* Comparison Table Mobile - Horizontal Scroll */
@media (max-width: 768px) {
    .comparison-table-wrap,
    .comparison-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
        scrollbar-width: thin;
    }

    .comparison-table-wrap::after,
    .comparison-wrapper::after {
        content: '← 좌우 스크롤 →';
        display: block;
        text-align: center;
        font-size: 11px;
        color: var(--gray-400);
        padding: 8px 0;
    }

    .comparison-table {
        min-width: 500px;
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--white);
        z-index: 1;
        min-width: 100px;
    }

    .comparison-table thead th:first-child {
        background: var(--gray-50);
    }
}

/* Services Grid Mobile */
@media (max-width: 480px) {
    .services-overview {
        padding: 48px 0;
    }

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Products Filter Mobile */
@media (max-width: 480px) {
    .products-filter {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        margin-bottom: 24px;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .products-grid {
        gap: 16px;
    }

    .product-ribbon {
        font-size: 10px;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }

    .product-header {
        padding: 16px;
        gap: 12px;
    }

    .product-icon {
        width: 40px;
        height: 40px;
    }

    .product-title-wrap h3 {
        font-size: 15px;
    }

    .product-tag {
        font-size: 12px;
    }

    .product-desc {
        font-size: 13px;
        padding: 0 16px 12px;
        line-height: 1.6;
    }

    .product-specs {
        padding: 12px 16px;
        gap: 8px;
    }

    .spec-item {
        padding: 10px 8px;
    }

    .spec-label {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .spec-value {
        font-size: 12px;
    }

    .product-benefits {
        padding: 0 16px 16px;
        gap: 6px;
    }

    .product-benefits span {
        font-size: 11px;
        padding: 4px 8px;
    }

    a.product-cta {
        padding: 14px;
        font-size: 15px;
        font-weight: 600;
    }
}

/* Savings Calculator Mobile */
@media (max-width: 480px) {
    .savings-calculator {
        padding: 32px 20px;
        margin-top: 24px;
        border-radius: 16px;
    }

    .calc-header {
        margin-bottom: 32px;
    }

    .calc-header h3 {
        font-size: 18px;
    }

    .calc-header p {
        font-size: 13px;
    }

    .calc-content {
        flex-direction: column;
        gap: 16px;
    }

    .calc-arrow {
        transform: rotate(90deg);
    }

    .calc-arrow svg {
        width: 28px;
        height: 28px;
    }

    .calc-item {
        padding: 24px 20px;
        width: 100%;
        border-radius: 14px;
    }

    .calc-label {
        font-size: 12px;
        padding: 5px 12px;
    }

    .calc-value {
        font-size: 32px;
    }

    .calc-sub {
        font-size: 11px;
    }

    .calc-result {
        font-size: 15px;
        padding: 20px;
        border-radius: 12px;
    }

    .calc-result strong {
        font-size: 24px;
        display: block;
        margin-bottom: 4px;
    }
}

/* Process Timeline Mobile */
@media (max-width: 480px) {
    .process-section {
        padding: 48px 0;
    }

    .process-step {
        padding: 16px 0;
    }

    .process-step .step-number {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .step-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .step-content p {
        font-size: 12px;
    }

    .step-time {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-categories {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-bottom: 32px;
    }

    .faq-cat-btn {
        padding: 10px 14px;
        font-size: 13px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 48px 0;
    }

    .faq-question {
        padding: 16px 0;
        font-size: 14px;
        text-align: left;
        min-height: 52px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }

    .faq-arrow {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }
}

/* Cases Section Mobile */
@media (max-width: 480px) {
    .cases-section {
        padding: 48px 0;
    }

    .cases-slider {
        padding: 25px 0 10px 0;
    }

    .cases-slider::before,
    .cases-slider::after {
        width: 40px;
    }

    .cases-track {
        gap: 20px;
        padding-top: 20px;
        animation-duration: 25s;
        animation-name: casesMarquee;
    }

    .case-card {
        flex: 0 0 280px;
        padding: 20px;
        border-radius: 16px;
    }

    .case-card::before {
        height: 3px;
    }

    .case-avatar {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .case-info h4 {
        font-size: 14px;
    }

    .case-info span {
        font-size: 11px;
    }

    .case-quote {
        font-size: 13px;
        padding: 14px;
        line-height: 1.6;
        border-radius: 10px;
    }

    .case-quote::before {
        font-size: 22px;
        top: 6px;
        left: 10px;
    }

    .case-result {
        padding-top: 14px;
        gap: 8px;
    }

    .result-item {
        padding: 8px 6px;
        border-radius: 8px;
    }

    .result-item span {
        font-size: 9px;
    }

    .result-item strong {
        font-size: 13px;
    }

    .case-badge {
        font-size: 10px;
        padding: 4px 10px;
        top: -10px;
        left: 16px;
    }
}

/* Partners Section Mobile */
@media (max-width: 480px) {
    .partners-section {
        padding: 48px 0;
    }

    .main-partner-card {
        padding: 14px;
    }

    .main-partner-logo {
        width: 44px;
        height: 44px;
    }

    .main-partner-info strong {
        font-size: 13px;
    }

    .main-partner-info span {
        font-size: 11px;
    }

    .card-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .van-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .card-partner-item,
    .van-partner-item {
        padding: 10px 8px;
    }

    .card-partner-item img,
    .van-partner-item img {
        height: 20px;
    }
}

/* Consultation Form Mobile */
@media (max-width: 480px) {
    .consultation-section {
        padding: 48px 0;
    }

    .consult-header h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .consult-header p {
        font-size: 14px;
    }

    .urgency-box {
        padding: 14px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .urgency-box.urgent {
        padding: 16px;
    }

    .urgency-icon {
        font-size: 24px;
    }

    .consult-benefits {
        gap: 8px;
    }

    .consult-benefits li {
        font-size: 13px;
        padding: 8px 12px;
    }

    .consult-form {
        padding: 20px 16px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 52px;
    }

    .checkbox-group {
        gap: 8px;
    }

    .checkbox-label {
        font-size: 13px;
        min-height: 44px;
        padding: 8px 0;
    }

    .submit-btn {
        padding: 18px;
        font-size: 17px;
        font-weight: 700;
        min-height: 60px;
    }

    .privacy-text {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Contact Section Mobile */
@media (max-width: 480px) {
    .contact-section {
        padding: 48px 0;
    }

    .contact-info-card {
        padding: 16px;
    }

    .contact-info-item {
        padding: 12px 0;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-text strong {
        font-size: 13px;
    }

    .contact-text span {
        font-size: 14px;
    }

    .contact-img {
        min-height: 180px;
    }
}

/* Footer Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 120px; /* Extra padding for mobile floating CTA */
    }

    .footer-brand {
        margin-bottom: 24px;
    }

    .footer-brand .logo {
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-links h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 13px;
        padding: 8px 0;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 11px;
    }

    .footer-legal {
        gap: 12px;
    }

    .footer-legal a {
        min-height: 36px;
        display: flex;
        align-items: center;
    }
}

/* Mobile Floating CTA Enhanced */
@media (max-width: 768px) {
    .mobile-floating-cta {
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    }

    .mobile-floating-cta .cta-inner {
        gap: 8px;
    }

    .mobile-floating-cta .btn {
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 600;
        min-height: 52px;
        border-radius: var(--radius);
    }

    .mobile-floating-cta .btn-primary {
        flex: 1;
        background: var(--primary);
        box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    }

    .mobile-floating-cta .btn-phone {
        width: 52px;
        background: var(--white);
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    /* Ensure floating actions don't overlap */
    .floating-actions {
        bottom: 90px;
        right: 12px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        padding: 0;
        min-width: 48px;
        min-height: 48px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
}

/* Live Notification Mobile Enhanced */
@media (max-width: 768px) {
    .live-notification {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 12px 14px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .notification-content {
        flex: 1;
        min-width: 0;
    }

    .notification-text {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .notification-time {
        font-size: 10px;
    }

    .notification-cta {
        font-size: 11px;
        padding: 6px 10px;
        white-space: nowrap;
    }
}

/* Pain Points Mobile */
@media (max-width: 480px) {
    .pain-point-card {
        padding: 14px 16px;
        margin-bottom: 12px;
    }

    .pain-point-card h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .pain-point-card p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Section Headers Mobile */
@media (max-width: 480px) {
    .section-header {
        margin-bottom: 28px;
    }

    .section-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .section-title .text-primary,
    .section-title .text-danger {
        font-size: inherit;
    }

    .section-desc {
        font-size: 13px;
        margin-top: 8px;
        line-height: 1.6;
    }
}

/* Scroll Progress Mobile */
@media (max-width: 768px) {
    .scroll-progress {
        height: 3px;
    }
}

/* Skip to Content Mobile */
@media (max-width: 768px) {
    .skip-to-content:focus {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    a, button {
        min-height: 44px;
    }

    /* Remove hover effects on touch devices */
    .product-card:hover,
    .service-card:hover,
    .case-card:hover {
        transform: none;
    }

    /* Active states for touch feedback */
    .btn:active {
        transform: scale(0.98);
    }

    a.product-cta:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .filter-btn:active,
    .faq-cat-btn:active {
        background: var(--primary-100);
    }

    .faq-question:active {
        background: var(--gray-50);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .mobile-floating-cta {
        transition: none;
    }

    .live-notification {
        transition: none;
    }
}

/* Dark mode support for system preference */
@media (prefers-color-scheme: dark) {
    /* Only apply if user hasn't explicitly set light mode */
    /* Note: This is commented out as the site uses light theme by default */
    /* Uncomment if dark mode support is needed */
    /*
    :root {
        --white: #1a1a1a;
        --gray-50: #2a2a2a;
        --gray-100: #333;
        --gray-800: #e5e5e5;
    }
    */
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 20px 0 30px;
        min-height: auto;
    }

    .mobile-floating-cta {
        padding: 8px 16px;
    }

    .mobile-floating-cta .btn {
        min-height: 44px;
        padding: 10px 16px;
    }

    .mobile-menu-inner {
        max-height: 100vh;
    }

    .mobile-nav {
        max-height: calc(100vh - 150px);
    }
}

/* ===== TYPOGRAPHY & ACCESSIBILITY OVERHAUL ===== */
/*
 * Silicon Valley Standard Typography Fixes
 * WCAG AA Compliant (4.5:1 contrast ratio)
 * Minimum font size: 12px (absolute minimum), 13px (recommended)
 */

/* Global typography improvements */
p, li, td, th, label, span {
    line-height: 1.6;
}

/* Ensure readable contrast on all backgrounds */
.footer a,
.footer p,
.footer span,
.footer li {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer h4 {
    color: var(--white);
}

/* Fix low-contrast text elements */
.nav-link,
.nav-dropdown a {
    color: var(--gray-600);
}

.nav-link:hover,
.nav-dropdown a:hover {
    color: var(--gray-900);
}

/* Product card text improvements */
.product-desc {
    line-height: 1.7;
    color: var(--gray-600);
}

.product-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

/* FAQ text improvements */
.faq-question {
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-800);
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-600);
}

/* Form label improvements */
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Mobile: Enforce minimum readable font sizes */
@media (max-width: 768px) {
    /* Override any 10px fonts to 11px minimum */
    .notification-time,
    .step-time,
    .stat-sub {
        font-size: 11px !important;
    }

    /* Override any 11px fonts to 12px for body text */
    .section-badge,
    .badge,
    .filter-btn,
    .faq-cat-btn {
        font-size: 12px !important;
    }

    /* Ensure body text is readable */
    .product-desc,
    .service-card p,
    .case-quote,
    .faq-answer p {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }
}

@media (max-width: 480px) {
    /* Absolute minimum sizes for smallest screens */
    body {
        font-size: 15px;
    }

    /* Ensure CTAs are always readable */
    .btn,
    a.product-cta,
    .submit-btn {
        font-size: 15px !important;
        font-weight: 600;
    }

    /* Card content minimum sizes */
    .spec-value,
    .stat-label,
    .product-benefits span {
        font-size: 12px !important;
    }

    /* Labels and captions */
    .spec-label {
        font-size: 10px !important;
        font-weight: 700;
        letter-spacing: 0.05em;
    }
}

/* Text truncation safety */
.product-title-wrap h3,
.service-card h3,
.news-card h3,
.case-info h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-desc,
.service-card p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Word break for long content */
.case-quote,
.faq-answer p,
.product-desc {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gray-400: #374151;
        --gray-500: #1F2937;
        --gray-600: #111827;
    }

    .btn-outline {
        border-width: 3px;
    }
}

/* Focus visible improvements for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ===== [P0 FIX] Form Loading Spinner ===== */
.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Error State Enhancement */
.form-agreement.error {
    background: var(--danger-light);
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--danger);
}

.form-agreement.error .checkbox-label {
    color: var(--danger);
}

/* Submit button disabled state */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(20, 40, 160, 0.25);
}

/* ===== [P1 FIX] Interactive Savings Calculator ===== */
.savings-calculator.interactive {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.calc-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
}

.calc-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.calc-select {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-800);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

.calc-select:hover {
    border-color: var(--primary);
}

.calc-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 40, 160, 0.1);
}

.calc-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 20px;
}

.savings-calculator.calculated .calc-result {
    animation: resultPop 0.3s ease;
}

@keyframes resultPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* ===== [P1 FIX] Success Modal Next Steps ===== */
.success-next-steps {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.next-steps-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 16px;
    text-align: center;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.next-step .step-num {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step .step-text {
    font-size: 14px;
    color: var(--gray-700);
}

.success-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* Mobile adjustments for calculator */
@media (max-width: 768px) {
    .calc-inputs {
        flex-direction: column;
        align-items: stretch;
    }

    .calc-input-group {
        min-width: 100%;
    }

    .calc-select {
        width: 100%;
    }
}
