/* ===================================
   ACE Consulting - rspartners 스타일
   고급 전환 효과 및 애니메이션
   =================================== */

:root {
    /* Primary Colors */
    --primary: #1e3a5f;
    --primary-dark: #152a47;
    --primary-light: #2a4a73;
    --accent: #c9a227;
    --accent-light: #e0be5a;
    --accent-dark: #a88a1f;
    
    /* Subsidy Colors */
    --subsidy: #2d6a4f;
    --subsidy-light: #40916c;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Loading Screen - 고급 효과
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    overflow: hidden;
}

.loading-logo .logo-ace {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 6px;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.loading-logo .logo-consulting {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.loading-logo .logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.loading-bar {
    width: 320px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.6s;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    animation: loadingProgress 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes loadingProgress {
    to { width: 100%; }
}

/* ===================================
   Landing Page - Intro Main
   =================================== */
.landing-page {
    background: var(--primary-dark);
    min-height: 100vh;
}

.intro-main {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a1628 0%, var(--primary-dark) 50%, var(--primary) 100%);
}

.intro-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.intro-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 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='1'%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");
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Intro Header */
.intro-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 1.8s;
}

.intro-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
}

.logo-ace {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-consulting {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
}

.intro-contact {
    display: flex;
    align-items: center;
}

.intro-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.intro-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.intro-phone:hover::before {
    left: 100%;
}

.intro-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.intro-phone svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* Intro Content */
.intro-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
}

.intro-title-area {
    margin-bottom: 60px;
}

.intro-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 6px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 2s;
}

.intro-title {
    margin-bottom: 28px;
    overflow: hidden;
}

.intro-title .title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    opacity: 0;
    transform: translateY(100%);
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.intro-title .title-line:nth-child(1) {
    animation-delay: 2.2s;
}

.intro-title .title-line:nth-child(2) {
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 2.4s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 2.6s;
}

/* Service Cards */
.intro-services {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 2.8s;
}

.service-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 44px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    animation: rotate 8s linear infinite paused;
}

.service-card:hover::after {
    animation-play-state: running;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(201, 162, 39, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 18px;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.service-card:hover .service-icon svg {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.service-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.service-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover .service-title {
    transform: translateX(8px);
}

.service-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-arrow {
    position: absolute;
    bottom: 44px;
    right: 44px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.service-arrow svg {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.service-card:hover .service-arrow svg {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.service-highlight {
    position: absolute;
    top: 24px;
    right: 24px;
}

.service-highlight span {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(201, 162, 39, 0.6); }
}

/* Trust Bar */
.intro-trust-bar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 52px 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 3s;
}

.trust-stat {
    text-align: center;
    transition: var(--transition);
}

.trust-stat:hover {
    transform: scale(1.05);
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Scroll Guide */
.intro-scroll-guide {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards, float 3s ease-in-out infinite;
    animation-delay: 3.2s, 3.2s;
}

.intro-scroll-guide span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   Page Transition - 고급 효과
   =================================== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    pointer-events: none;
}

.page-transition .transition-panels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
}

.page-transition .panel {
    flex: 1;
    background: var(--primary-dark);
    transform: scaleY(0);
    transform-origin: bottom;
}

.page-transition.active .panel {
    animation: panelUp 0.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.page-transition .panel:nth-child(1) { animation-delay: 0s; }
.page-transition .panel:nth-child(2) { animation-delay: 0.05s; }
.page-transition .panel:nth-child(3) { animation-delay: 0.1s; }
.page-transition .panel:nth-child(4) { animation-delay: 0.15s; }
.page-transition .panel:nth-child(5) { animation-delay: 0.2s; }

@keyframes panelUp {
    0% { transform: scaleY(0); transform-origin: bottom; }
    50% { transform: scaleY(1); transform-origin: bottom; }
    51% { transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: top; }
}

.transition-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    z-index: 10;
}

.page-transition.active .transition-content {
    animation: transitionFade 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes transitionFade {
    0%, 100% { opacity: 0; }
    40%, 60% { opacity: 1; }
}

.transition-logo .logo-ace {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 8px;
}

.transition-logo .logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 4px;
}

.transition-text {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 4px;
}

/* ===================================
   Sub Page Header
   =================================== */
.sub-page {
    background: var(--white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--gray-200);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.scrolled .header-inner {
    height: 72px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo .logo-ace {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo .logo-ace {
    color: var(--primary);
}

.logo .logo-consulting {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.logo .logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    transition: var(--transition);
}

.header.scrolled .logo .logo-text {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    display: block;
    padding: 10px 18px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.header.scrolled .nav-link {
    color: var(--accent);
}

.nav-link:hover {
    color: var(--accent-light);
}

.header.scrolled .nav-link:hover {
    color: var(--accent-dark);
    background: var(--gray-50);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.header-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
    background: var(--gray-700);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   Sub Hero Section
   =================================== */
.sub-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 40%);
}

.sub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' 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='m0 40 40-40h-40v40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sub-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.sub-hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.sub-hero-badge.subsidy {
    background: rgba(45, 106, 79, 0.2);
    border-color: rgba(64, 145, 108, 0.4);
    color: #6fcf97;
}

.sub-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.sub-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.sub-hero-stats {
    display: flex;
    gap: 56px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
}

.hero-stat {
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-stat .stat-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.subsidy-hero {
    background: linear-gradient(135deg, var(--subsidy) 0%, #1b4332 100%);
}

.subsidy-hero .sub-hero-bg {
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(111, 207, 151, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(111, 207, 151, 0.08) 0%, transparent 40%);
}

.subsidy-hero .hero-stat::before {
    background: #6fcf97;
}

.subsidy-hero .hero-stat .stat-value {
    color: #6fcf97;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--accent);
    color: var(--gray-900);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-white {
    background: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.light {
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.section-label::before {
    right: calc(100% + 15px);
}

.section-label::after {
    left: calc(100% + 15px);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 18px;
    line-height: 1.3;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   About Section
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

.about-highlight-box {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-left: 5px solid var(--accent);
    border-radius: 20px;
    padding: 56px;
    position: relative;
    overflow: hidden;
}

.about-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-highlight-box.subsidy {
    border-left-color: var(--subsidy-light);
}

.about-highlight-box.subsidy::before {
    background: radial-gradient(circle, rgba(64, 145, 108, 0.05) 0%, transparent 70%);
}

.highlight-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--gray-900);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.about-highlight-box h3 {
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--gray-800);
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-highlight-box h3 strong {
    font-weight: 700;
    color: var(--primary);
}

.about-highlight-box p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.85;
}

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

.about-feature {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.about-feature:hover::before {
    transform: scaleX(1);
}

.about-feature:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.feature-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 18px;
    opacity: 0.9;
}

.about-feature h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.about-feature p strong {
    color: var(--primary);
}

/* ===================================
   Comparison Table
   =================================== */
.comparison-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 24px 28px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
}

.comparison-table thead th.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--gray-900);
}

.comparison-table tbody td {
    font-size: 1rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.comparison-table tbody td.highlight {
    background: rgba(201, 162, 39, 0.08);
    color: var(--gray-900);
}

.comparison-table tbody td.highlight strong {
    color: var(--primary);
    font-weight: 700;
}

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

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

.comparison-table tbody tr:hover td.highlight {
    background: rgba(201, 162, 39, 0.15);
}

/* ===================================
   Eligibility Section
   =================================== */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.eligibility-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.eligibility-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.eligibility-card:hover::after {
    opacity: 1;
}

.eligibility-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.eligibility-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 18px;
    transition: var(--transition);
}

.eligibility-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    transition: var(--transition);
}

.eligibility-card:hover .eligibility-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.eligibility-card:hover .eligibility-icon svg {
    color: var(--primary-dark);
}

.eligibility-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.eligibility-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.eligibility-card p strong {
    color: var(--primary);
}

.eligibility-notice {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.15));
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 16px;
    padding: 32px;
}

.notice-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--gray-900);
    font-weight: 900;
    font-size: 1.4rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.eligibility-notice p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.85;
}

.eligibility-notice p strong {
    color: var(--primary);
}

/* ===================================
   Benefits Grid
   =================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.benefit-card .benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 18px;
    transition: var(--transition);
}

.benefit-card .benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card:hover .benefit-icon svg {
    color: var(--primary-dark);
}

.benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ===================================
   Fund Cards
   =================================== */
.fund-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.fund-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.fund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.fund-card:hover::before {
    opacity: 1;
}

.fund-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(201, 162, 39, 0.15);
}

.fund-card.featured {
    border-color: var(--accent);
    background: rgba(201, 162, 39, 0.05);
}

.fund-header {
    padding: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.fund-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.fund-header h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.fund-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.fund-body {
    padding: 36px;
    position: relative;
    z-index: 1;
}

.fund-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.fund-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.fund-card:hover .fund-stat {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
}

.fund-stat .stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.fund-stat .stat-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent);
}

.fund-uses {
    list-style: none;
}

.fund-uses li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.fund-uses li:hover {
    padding-left: 8px;
    color: var(--white);
}

.fund-uses li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.fund-uses li:last-child {
    border-bottom: none;
}

/* ===================================
   Process Timeline
   =================================== */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
}

.process-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 900;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.25);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.process-step:hover .step-number::after {
    opacity: 1;
    transform: scale(1);
}

.process-step:hover .step-number {
    background: var(--accent);
    color: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.4);
}

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.55;
}

.process-connector {
    width: 70px;
    height: 3px;
    background: var(--gray-200);
    margin-top: 44px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.process-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-connector.animated::after {
    width: 100%;
}

.process-notice {
    text-align: center;
    padding: 28px 36px;
    background: var(--gray-50);
    border-radius: 14px;
    border: 1px solid var(--gray-200);
}

.process-notice p {
    font-size: 1.05rem;
    color: var(--gray-600);
}

.process-notice strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 28px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    gap: 20px;
}

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

.faq-icon {
    width: 22px;
    height: 22px;
    color: var(--gray-400);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 350px;
}

.faq-answer p {
    padding: 0 28px 26px;
    font-size: 0.98rem;
    color: var(--gray-600);
    line-height: 1.85;
}

/* ===================================
   CTA Section
   =================================== */
.section-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
    to { transform: rotate(360deg); }
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 36px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 70px 0 50px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--gray-800);
    margin-bottom: 28px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo .logo-ace {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
}

.footer-logo .logo-consulting {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
}

.footer-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 26px 52px;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-info-item.full {
    grid-column: span 2;
}

.footer-info-item strong {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info-item span {
    font-size: 0.98rem;
    color: var(--gray-300);
}

.footer-bottom {
    text-align: center;
}

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

/* ===================================
   Floating CTA
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: var(--transition);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 60px;
    box-shadow: 
        0 10px 30px rgba(201, 162, 39, 0.45),
        0 0 0 0 rgba(201, 162, 39, 0.4);
    transition: var(--transition);
    animation: floatPulse 2.5s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(201, 162, 39, 0.45),
            0 0 0 0 rgba(201, 162, 39, 0.4);
    }
    50% { 
        box-shadow: 
            0 15px 40px rgba(201, 162, 39, 0.5),
            0 0 0 12px rgba(201, 162, 39, 0);
    }
}

.floating-cta a:hover {
    transform: translateY(-5px);
    animation: none;
    box-shadow: 
        0 15px 40px rgba(201, 162, 39, 0.5),
        0 0 0 8px rgba(201, 162, 39, 0.15);
}

.floating-cta svg {
    width: 22px;
    height: 22px;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll animations */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: 
        opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate.animate-left {
    transform: translateX(-50px);
}

.animate.animate-left.in-view {
    transform: translateX(0);
}

.animate.animate-right {
    transform: translateX(50px);
}

.animate.animate-right.in-view {
    transform: translateX(0);
}

.animate.animate-scale {
    transform: scale(0.9);
}

.animate.animate-scale.in-view {
    transform: scale(1);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ===================================
   Mobile Responsive
   =================================== */
@media (max-width: 1024px) {
    .intro-services {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
    
    .intro-trust-bar {
        gap: 36px;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fund-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: repeat(2, auto);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    /* Landing page mobile */
    .intro-header {
        padding: 20px 24px;
    }
    
    .intro-title .title-line {
        font-size: 2.75rem;
    }
    
    .intro-trust-bar {
        flex-wrap: wrap;
        gap: 28px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-stat {
        flex: 0 0 45%;
    }
    
    /* Header mobile */
    .header-inner {
        height: 68px;
    }
    
    .header.scrolled .header-inner {
        height: 64px;
    }
    
    .nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 28px;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
        box-shadow: var(--shadow-xl);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 18px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1.15rem;
        color: var(--gray-800);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Sub hero mobile */
    .sub-hero {
        padding: 130px 0 70px;
    }
    
    .sub-hero-title {
        font-size: 2.5rem;
    }
    
    .sub-hero-stats {
        gap: 28px;
        flex-wrap: wrap;
    }
    
    .hero-stat .stat-value {
        font-size: 1.65rem;
    }
    
    /* Section mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-label::before,
    .section-label::after {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .process-connector {
        width: 3px;
        height: 45px;
        margin: 18px 0;
    }
    
    .process-connector::after {
        width: 100%;
        height: 0;
    }
    
    .process-connector.animated::after {
        height: 100%;
        width: 100%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 14px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 36px;
    }
    
    .footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 18px 28px;
    }
    
    .footer-info-item.full {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .intro-title .title-line {
        font-size: 2.25rem;
    }
    
    .service-card {
        padding: 32px;
    }
    
    .service-arrow {
        bottom: 32px;
        right: 32px;
    }
    
    .sub-hero-title {
        font-size: 2rem;
    }
    
    .about-highlight-box {
        padding: 36px 28px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .footer-info-item.full {
        grid-column: span 1;
    }
}

/* ===================================
   간편문의 버튼 (랜딩 페이지)
   =================================== */
.intro-quick-contact {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 3s;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--gray-900);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

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

.quick-contact-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.5);
}

/* ===================================
   간편문의 모달
   =================================== */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.inquiry-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.inquiry-modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
}

.inquiry-modal.active .inquiry-modal-content {
    transform: translateY(0) scale(1);
}

.inquiry-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.inquiry-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

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

.inquiry-modal-close:hover svg {
    color: var(--gray-800);
}

.inquiry-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.inquiry-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.inquiry-modal-header p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* 폼 스타일 */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
    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' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 44px;
}

/* 체크박스 스타일 */
.form-agreement {
    margin-top: 8px;
}

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

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-label .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}

/* 제출 버튼 */
.inquiry-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.inquiry-submit-btn svg {
    width: 20px;
    height: 20px;
}

.inquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
}

.inquiry-submit-btn:active {
    transform: translateY(0);
}

/* 연락처 정보 */
.inquiry-contact-info {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.inquiry-contact-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.inquiry-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.inquiry-phone svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.inquiry-phone:hover {
    color: var(--accent);
}

/* ===================================
   문의 완료 모달
   =================================== */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.success-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: var(--transition);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.success-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.success-modal-content p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.success-close-btn {
    padding: 14px 48px;
    background: var(--primary);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate {
        opacity: 1;
        transform: none;
    }
}

/* 모바일 반응형 - 모달 */
@media (max-width: 480px) {
    .inquiry-modal-content {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .inquiry-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .inquiry-submit-btn {
        padding: 16px;
    }
}

/* ===================================
   강화된 모바일 반응형 (768px 이하)
   =================================== */
@media (max-width: 768px) {
    /* 로고 모바일 최적화 */
    .loading-logo .logo-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 0.5px;
    }
    
    .logo .logo-text {
        font-size: 1.1rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .transition-logo .logo-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    /* 인트로 섹션 모바일 */
    .intro-subtitle {
        font-size: 0.95rem;
    }
    
    .intro-desc {
        font-size: 0.95rem;
        padding: 0 16px;
    }
    
    /* 서비스 카드 모바일 */
    .intro-services {
        padding: 0 20px;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px;
        min-height: auto;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-desc {
        font-size: 0.85rem;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .service-highlight {
        top: 16px;
        right: 16px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    /* 간편문의 버튼 모바일 */
    .quick-contact-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .quick-contact-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* 신뢰 지표 모바일 */
    .intro-trust-bar {
        padding: 0 16px;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
    
    /* 스크롤 가이드 숨김 */
    .intro-scroll-guide {
        display: none;
    }
    
    /* 서브페이지 히어로 모바일 */
    .sub-hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    
    .sub-hero-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero-stat {
        min-width: auto;
    }
    
    .hero-stat .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.75rem;
    }
    
    /* 섹션 스타일 모바일 */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 36px;
    }
    
    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    /* About 섹션 모바일 */
    .about-grid {
        gap: 28px;
    }
    
    .about-highlight-box {
        padding: 28px 20px;
    }
    
    .about-highlight-box h3 {
        font-size: 1.25rem;
    }
    
    .about-highlight-box p {
        font-size: 0.9rem;
    }
    
    .about-feature {
        padding: 24px 20px;
    }
    
    .about-feature h4 {
        font-size: 1rem;
    }
    
    .about-feature p {
        font-size: 0.85rem;
    }
    
    .feature-num {
        font-size: 0.7rem;
    }
    
    /* 지원자격 카드 모바일 */
    .eligibility-card {
        padding: 28px 20px;
    }
    
    .eligibility-icon {
        width: 56px;
        height: 56px;
    }
    
    .eligibility-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .eligibility-card h4 {
        font-size: 1rem;
    }
    
    .eligibility-card p {
        font-size: 0.85rem;
    }
    
    .eligibility-notice {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .eligibility-notice p {
        font-size: 0.85rem;
    }
    
    /* 비교 테이블 모바일 */
    .comparison-wrapper {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .comparison-table {
        min-width: 500px;
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
    }
    
    /* 혜택 카드 모바일 */
    .benefit-card {
        padding: 24px 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .benefit-card h4 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    /* 자금유형 카드 모바일 */
    .fund-card {
        border-radius: 16px;
    }
    
    .fund-header {
        padding: 24px 20px;
    }
    
    .fund-header h3 {
        font-size: 1.35rem;
    }
    
    .fund-body {
        padding: 24px 20px;
    }
    
    .fund-stat .stat-value {
        font-size: 1.1rem;
    }
    
    .fund-uses li {
        font-size: 0.85rem;
        padding-left: 20px;
    }
    
    /* 진행절차 모바일 */
    .step-number {
        font-size: 1.1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .process-notice {
        font-size: 0.9rem;
        padding: 16px 20px;
    }
    
    /* FAQ 모바일 */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 20px 18px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* CTA 섹션 모바일 */
    .section-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-desc {
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    /* 푸터 모바일 */
    .footer {
        padding: 50px 0 40px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-info-item strong {
        font-size: 0.75rem;
    }
    
    .footer-info-item span {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* 플로팅 CTA 모바일 */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta a {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
    
    .floating-cta svg {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   초소형 화면 (360px 이하)
   =================================== */
@media (max-width: 360px) {
    .intro-title .title-line {
        font-size: 1.9rem;
    }
    
    .loading-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-stat {
        flex: 0 0 48%;
    }
    
    .sub-hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-highlight-box h3 {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .inquiry-modal-content {
        padding: 24px 16px;
    }
    
    .inquiry-modal-header h3 {
        font-size: 1.35rem;
    }
    
    .inquiry-submit-btn {
        font-size: 1rem;
    }
    
    .quick-contact-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ===================================
   가로 모드 최적화
   =================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .intro-main {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .loading-screen {
        display: none;
    }
    
    .intro-title .title-line {
        font-size: 2rem;
    }
    
    .intro-services {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .service-card {
        padding: 20px;
        min-height: auto;
    }
    
    .intro-trust-bar {
        flex-wrap: nowrap;
    }
    
    .trust-divider {
        display: block;
    }
}
/* cache bust 1770372569 */
