/* 
  ==============================================
  INSIGHT LOUNGE - CSS 스타일 가이드 (Professional Tier - NO AI IMAGES)
  ==============================================
*/

:root {
    /* Color Palette - Sophisticated & Calmer Tones */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f4f6fa;
    --color-text-primary: #111827;
    --color-text-secondary: #4b5563;
    --color-text-light: #9ca3af;
    
    /* Gradient Accents (Deep Indigo & Soft Lavender) */
    --color-accent: #4f46e5;
    --gradient-primary: linear-gradient(135deg, #4338ca 0%, #6366f1 50%, #a78bfa 100%);
    --gradient-glow: linear-gradient(135deg, rgba(67, 56, 202, 0.4) 0%, rgba(99, 102, 241, 0.4) 50%, rgba(167, 139, 250, 0.4) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(67, 56, 202, 0.04) 0%, rgba(99, 102, 241, 0.04) 50%, rgba(167, 139, 250, 0.04) 100%);

    /* Typography */
    --font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', sans-serif;
    
    /* Effects - More refined, architectural shadows */
    --shadow-base: 0 1px 3px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    
    /* Dimensions */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-base: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================== Reset & Basic ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* ================== Typography ================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

/* ================== Layout & Utility ================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 140px 0;
}

.bg-light {
    background-color: var(--color-bg-secondary);
}

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

.text-accent { color: var(--color-accent); }
.mr-1 { margin-right: 0.25rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }

.relative { position: relative; }

/* ================== Components ================== */

/* Glass Panel / Card */
.glass-panel, .glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--color-text-primary);
    color: var(--color-bg-primary);
    border: 1px solid var(--color-text-primary);
}

.btn-primary:hover {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--gradient-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--color-text-primary);
    backdrop-filter: blur(4px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(79, 70, 229, 0.08);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge.gradient-bg {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

/* Section Header */
.section-header {
    margin-bottom: 5rem;
    max-width: 800px;
}
.section-header.text-center {
    margin: 0 auto 5rem;
}
.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-top: 1.5rem;
    font-weight: 400;
}

/* ================== Header & Nav ================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    height: 70px;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #111827;
}

.desktop-nav ul {
    display: flex;
    gap: 3rem;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: #374151;
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-base);
}

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

.desktop-nav a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-bg-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition-base);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-nav-cta {
    color: var(--color-accent) !important;
}

/* ================== Hero Section ================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background-color: var(--color-bg-primary);
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6fa 50%, #eff6ff 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    top: -20vw;
    right: -10vw;
    animation: blobMove 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-2 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
    bottom: -20vw;
    left: -20vw;
    animation: blobMove 20s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes blobMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-30px, 30px); }
}

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

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: #111827;
    word-break: keep-all;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #374151;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
}

.hero-desc-minimal {
    margin-top: 3.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
}

.hero-desc-minimal p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
    word-break: keep-all;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

/* Hero Right Side Visual */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.circle-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-width: 2px;
    border-style: dashed;
    animation: rotate 30s linear infinite;
}

.ring-2 {
    width: 450px;
    height: 450px;
    border-color: rgba(167, 139, 250, 0.15);
    animation: rotate 40s linear infinite reverse;
}

.ring-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border: none;
    box-shadow: inset 0 0 40px rgba(99, 102, 241, 0.1);
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.glass-float {
    position: absolute;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 15px 35px -5px rgba(17, 24, 39, 0.08);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 10;
}

.glass-float i {
    font-size: 1.8rem;
    color: var(--color-accent);
}

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

.float-text strong {
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 0.2rem;
}

.float-text span {
    font-size: 0.85rem;
    color: #6b7280;
}

.float-card-1 {
    top: 10%;
    right: -10%;
    animation: floatCard 6s ease-in-out infinite alternate;
}

.float-card-2 {
    bottom: 10%;
    left: -10%;
    animation: floatCard 8s ease-in-out infinite alternate-reverse;
}

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

/* ================== Crisis Section (Stats Only) ================== */
.crisis-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crisis-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.stat-card {
    background: var(--color-bg-primary);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-base);
    border: 1px solid rgba(0,0,0,0.03);
    border-top: 4px solid var(--color-accent);
    transition: var(--transition-base);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.05em;
}

.stat-icon-small {
    font-size: 1.4rem;
    margin-left: 14px;
    color: #6366f1;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}
.stat-text {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Data Bar */
.data-bar-section {
    background: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid #f3f4f6;
    margin-top: -3rem; /* Lift it high to meet Hero */
    position: relative;
    z-index: 20;
}

.d-flex-between {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.data-item {
    text-align: center;
}

.data-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.data-lab {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-visual {
    position: relative;
}

.mini-testimonial {
    padding: 3rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border-right: 4px solid var(--color-accent);
}

.mini-testimonial p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mt-author {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.view-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 1.5rem;
    opacity: 0.8;
}

.solution-card:hover .view-more {
    opacity: 1;
}

/* ================== Solutions Section ================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.solution-card {
    background: var(--color-bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-base);
}

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

.solution-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.solution-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.solution-card p {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* ================== ONE-POINT UP Section ================== */
.project-section {
    background-color: #0f1115;
    color: #ffffff;
    overflow: hidden;
}

.project-section .section-title {
    color: #ffffff;
}

.project-section .section-desc {
    color: #9ca3af;
}

.project-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.typo-visual {
    position: relative;
    padding: 4rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
}

.typo-main {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.typo-sub {
    font-size: 1.2rem;
    color: #e5e7eb;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}

.circle1 {
    width: 150px;
    height: 150px;
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite alternate;
}

.circle2 {
    width: 80px;
    height: 80px;
    bottom: -10px;
    left: 20px;
    animation: float 8s ease-in-out infinite alternate-reverse;
}

.curriculum-timeline {
    position: relative;
    padding-left: 20px;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -20px;
    top: -5px;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.timeline-content.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 12px;
}

.step-label {
    display: inline-block;
    color: #a78bfa;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.timeline-content p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.7;
}

/* ================== Stories Section ================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.story-card {
    background: var(--color-bg-primary);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-base);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-quote {
    color: var(--color-accent);
    font-size: 2rem;
    opacity: 0.15;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.05rem;
    color: var(--color-text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--gradient-subtle);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.8rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question i {
    color: var(--color-text-light);
    transition: transform var(--transition-fast);
}

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

.faq-item.active .faq-question {
    color: var(--color-accent);
}

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

.faq-answer p {
    padding-bottom: 2rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ================== Apply Form Section ================== */
.apply-section.gradient-bg {
    background: #0f172a; /* Sophisticated Dark Navy */
    color: #fff;
    padding: 120px 0;
}

.apply-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
}

.apply-header {
    text-align: center;
    margin-bottom: 4rem;
}

.apply-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.apply-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.apply-form .form-group label {
    color: #e2e8f0;
}

.apply-form input, .apply-form select, .apply-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.apply-form input:focus {
    background: rgba(255, 255, 255, 0.1);
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #374151;
}

input[type="text"],
input[type="date"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-checkbox input {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
}

/* ================== Footer ================== */
.footer {
    background-color: var(--color-bg-secondary);
    padding: 5rem 0 3rem;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-logo p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links ul {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    color: #fff;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #d1d5db;
    color: var(--color-text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-badge {
    background: rgba(79, 70, 229, 0.05);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
}

/* ================== Animations ================== */
.reveal {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.fade-up { transform: translateY(50px); }
.fade-right { transform: translateX(-50px); }
.fade-left { transform: translateX(50px); }
.zoom-in { transform: scale(0.97); }

/* ================== Responsive ================== */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .hero-title { font-size: 3.5rem; }
    .crisis-stats-grid { grid-template-columns: 1fr; gap: 2.5rem;}
    .project-layout, .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .apply-container { padding: 3rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
    .container { padding: 0 25px; }
    
    .desktop-nav, .header-cta { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-section { padding-top: calc(var(--header-height) + 2rem); min-height: auto; padding-bottom: 5rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-desc-minimal { border-left: none; border-top: 3px solid var(--color-accent); padding: 1.5rem 0 0 0; }
    
    .data-bar-section { margin-top: 0; padding: 4rem 0; }
    .d-flex-between { flex-direction: column; gap: 3rem; }
    
    .solutions-grid { grid-template-columns: 1fr; }
    .stories-grid { grid-template-columns: 1fr; }
    .crisis-stats-grid { grid-template-columns: 1fr; }
    
    .apply-container { padding: 2.5rem 1.5rem; }
    .apply-header h2 { font-size: 2.2rem; }
    
    .form-row { flex-direction: column; gap: 0; }
    
    .footer-content { flex-direction: column; align-items: flex-start; gap: 3rem; }
    .footer-links ul { flex-direction: column; gap: 1rem; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.4rem; }
    .btn-large { width: 100%; padding: 16px 20px; font-size: 0.95rem; }
    .stat-number { font-size: 2.5rem; }
    .typo-main { font-size: 2.8rem; }
    .container { padding: 0 20px; }
    .apply-container { padding: 2rem 1rem; }
    .apply-header h2 { font-size: 1.8rem; }
}
