/* ===================================
   드림플러스 경영지도컨설팅 홈페이지
   Design System & Styles
   =================================== */

/* --- CSS Variables --- */
:root {
    /* Primary Colors - Navy Corporate */
    --primary: #0a2e5c;
    --primary-light: #1a4a8a;
    --primary-dark: #061e3d;
    --primary-gradient: linear-gradient(135deg, #0a2e5c 0%, #1a4a8a 50%, #2563a8 100%);
    
    /* Accent Colors */
    --accent: #c8a44e;
    --accent-light: #dbb86a;
    --accent-dark: #a88a38;
    --accent-gradient: linear-gradient(135deg, #c8a44e 0%, #dbb86a 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f0f2f7;
    --gray-200: #e2e5ed;
    --gray-300: #c8cdd8;
    --gray-400: #9aa0b0;
    --gray-500: #6e7485;
    --gray-600: #4a4f5e;
    --gray-700: #2d3142;
    --gray-800: #1a1d2b;
    --gray-900: #0d0f18;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-display: 'Outfit', 'Noto Sans KR', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 46, 92, 0.06);
    --shadow-md: 0 4px 16px rgba(10, 46, 92, 0.1);
    --shadow-lg: 0 8px 32px rgba(10, 46, 92, 0.15);
    --shadow-xl: 0 16px 48px rgba(10, 46, 92, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* --- Loading Bar --- */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 10000;
    transition: width 0.4s ease;
    width: 0%;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 46, 92, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 100;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: var(--transition-base);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

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

.logo-main {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    font-weight: 400;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.lang-btn i.fa-globe {
    font-size: 14px;
    color: var(--accent-light);
}

.lang-arrow {
    font-size: 10px;
    transition: var(--transition-fast);
}

.lang-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: rgba(10, 46, 92, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition-fast);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 9px 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-align: left;
    font-family: var(--font-primary);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.lang-option.active {
    background: rgba(200, 164, 78, 0.2);
    color: var(--accent-light);
    font-weight: 600;
}

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

.btn-consultation {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(200, 164, 78, 0.3);
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 164, 78, 0.5);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 100;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 46, 92, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    padding: 8px 24px;
    transition: var(--transition-fast);
}

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

.mobile-cta {
    margin-top: 24px;
    font-size: 16px !important;
    padding: 14px 32px !important;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 46, 92, 0.8) 0%,
        rgba(10, 46, 92, 0.7) 50%,
        rgba(6, 30, 61, 0.9) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 164, 78, 0.15);
    border: 1px solid rgba(200, 164, 78, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    font-family: var(--font-primary);
}

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

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 164, 78, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(200, 164, 78, 0.5);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-light);
    display: inline;
}

.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--accent-light);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 14px;
}

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

/* --- Animations --- */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: animateUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* --- Reveal Animations --- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================
   SECTIONS - Common Styles
   =================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(200, 164, 78, 0.08);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(200, 164, 78, 0.15);
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    font-weight: 300;
    line-height: 1.7;
}

.text-left {
    text-align: left;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.section-about {
    background: var(--gray-50);
}

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

.about-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 78, 0.2);
}

.about-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition-base);
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

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

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.feature-item {
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-200);
}

.feature-item:hover {
    background: var(--gray-50);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: rgba(200, 164, 78, 0.2);
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

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

/* ===================================
   CEO SECTION
   =================================== */
.section-ceo {
    background: var(--white);
}

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

.ceo-image {
    position: relative;
}

.ceo-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.ceo-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.ceo-image-decoration {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, transparent 60%, rgba(10, 46, 92, 0.4) 100%);
}

.ceo-award-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(200, 164, 78, 0.35);
}

.ceo-award-badge i {
    font-size: 18px;
}

.ceo-info .section-tag {
    margin-bottom: 12px;
}

.ceo-info .section-title {
    margin-bottom: 24px;
}

.ceo-quote {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    padding: 20px 24px;
    border-left: 3px solid var(--accent);
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 32px;
    font-style: italic;
}

.ceo-credentials {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credential-group h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credential-group h4 i {
    color: var(--accent);
    font-size: 14px;
}

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

.credential-list li i {
    font-size: 11px;
    color: var(--accent);
    width: 16px;
    text-align: center;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.section-services {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
}

.services-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 46, 92, 0.95) 0%,
        rgba(6, 30, 61, 0.92) 100%
    );
}

.section-header.light .section-tag {
    color: var(--accent-light);
    background: rgba(200, 164, 78, 0.15);
    border-color: rgba(200, 164, 78, 0.25);
}

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

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 164, 78, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.service-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details {
    margin-bottom: 20px;
}

.service-details li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    position: relative;
    padding-left: 18px;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--white);
    gap: 10px;
}

/* ===================================
   POLICY SECTION
   =================================== */
.section-policy {
    background: var(--gray-50);
}

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

.policy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-base);
}

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

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

.policy-card.urgent {
    border-color: rgba(239, 68, 68, 0.2);
}

.policy-card.urgent::before {
    background: linear-gradient(90deg, var(--danger), #ff6b6b);
    opacity: 1;
}

.policy-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--primary);
    color: var(--white);
}

.policy-badge.urgent {
    background: var(--danger);
    animation: pulse 2s ease-in-out infinite;
}

.policy-badge.new {
    background: var(--success);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.policy-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.policy-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.policy-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--gray-400);
}

.policy-meta span i {
    color: var(--accent);
    font-size: 11px;
}

.policy-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition-fast);
}

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

.policy-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.policy-cta p {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ===================================
   MEDIA SECTION
   =================================== */
.section-media {
    background: var(--white);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.media-video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px 24px;
}

.video-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.video-info p {
    font-size: 13.5px;
    color: var(--gray-400);
}

/* Articles */
.media-articles {
    margin-top: 48px;
}

.articles-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.articles-title i {
    color: var(--accent);
}

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

.article-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    display: block;
}

.article-card:hover {
    background: var(--white);
    border-color: rgba(200, 164, 78, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-category {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: 12px;
}

.article-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card p {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.article-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-card:hover .article-link {
    color: var(--accent);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.section-contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-label {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

.contact-item-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form h3 i {
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

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

.required {
    color: var(--danger);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-family: var(--font-primary);
    color: var(--gray-700);
    transition: var(--transition-fast);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 74, 138, 0.1);
}

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    transition: var(--transition-fast);
    background: var(--gray-50);
}

.checkbox-label:hover {
    border-color: var(--primary-light);
    background: var(--white);
}

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

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

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

.checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.privacy-label {
    border: none !important;
    padding: 0 !important;
    background: none !important;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    justify-content: center;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary-dark);
    padding: 64px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.footer-logo .logo-main {
    font-size: 16px;
}

.footer-logo .logo-sub {
    font-size: 10px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a,
.footer-services a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p i {
    color: var(--accent);
    font-size: 13px;
    width: 16px;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ===================================
   FLOATING ACTIONS
   =================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-base);
}

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

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-phone {
    background: var(--success);
}

.floating-consultation {
    background: var(--accent-gradient);
}

.floating-top {
    background: var(--primary);
}

/* ===================================
   MODAL
   =================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: modalIn 0.4s ease;
}

@keyframes modalIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 56px;
    color: var(--success);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.modal-content .btn {
    min-width: 120px;
    justify-content: center;
}

/* ===================================
   PARTICLES
   =================================== */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 164, 78, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item:nth-child(2)::after {
        display: none;
    }
    
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ceo-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ceo-info .section-title,
    .ceo-info .section-tag {
        text-align: center;
    }
    
    .ceo-quote {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--accent);
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto 64px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .btn-consultation {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 15px;
    }
    
    .desktop-br {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px 32px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item::after {
        display: none !important;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
}
