@import url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css');

/* ==========================================================================
   KIT DESIGN SYSTEM - Professional Grade
   Created: 2025
   Author: 10-Year Veteran Web Designer
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES - DESIGN TOKENS
   ========================================================================== */

:root {
    /* Brand Colors - Unified Purple Theme */
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --primary-light: #8b9ff5;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --accent-pink: #f5576c;
    
    /* Semantic Colors */
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --error-color: #f56565;
    --info-color: #4299e1;
    
    /* Text Colors */
    --text-dark: #2d3748;
    --text-body: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --bg-dark: #2d3748;
    
    /* Border & Divider */
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    --divider-color: #cbd5e0;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Paperlogy', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Paperlogy', serif;
    
    /* Font Sizes - Modular Scale (1.250 - Major Third) */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    --text-7xl: 4.5rem;      /* 72px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    
    /* Spacing Scale - Compact */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 5rem;     /* 80px - Reduced from 96px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    letter-spacing: var(--tracking-tight);
}

h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

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

a:hover {
    color: var(--primary-dark);
}

strong, b {
    font-weight: var(--font-bold);
}

em, i {
    font-style: italic;
}

/* ==========================================================================
   4. LAYOUT CONTAINERS
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

.container-narrow {
    max-width: 1200px;
}

.container-wide {
    max-width: 1600px;
}

/* Section Padding - Compact */
section {
    padding: var(--space-16) 0;
}

.section-sm {
    padding: var(--space-12) 0;
}

.section-lg {
    padding: var(--space-20) 0;
}

/* ==========================================================================
   5. GRID SYSTEM
   ========================================================================== */

.grid {
    display: grid;
    gap: var(--space-8);
}

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

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

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

.grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-8);
    max-width: 1600px;
    margin: 0 auto;
}

.logo img {
    height: 20px;
    width: auto;
    display: block;
    transition: opacity var(--transition-base);
}

.logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-menu a {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-dark);
    letter-spacing: var(--tracking-wide);
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-base);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: var(--text-2xl);
    color: var(--text-dark);
    cursor: pointer;
    padding: var(--space-2);
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-8);
}

.hero h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--text-white);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: var(--space-5) var(--space-12);
    background: var(--text-white);
    color: var(--primary-color);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: var(--bg-light);
}

/* ==========================================================================
   8. CARDS & COMPONENTS
   ========================================================================== */

.card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-header {
    padding: var(--space-12);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    color: var(--text-white);
}

.card-body {
    padding: var(--space-12);
}

.card-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    display: block;
}

.card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--text-dark);
    font-weight: var(--font-bold);
}

.card p {
    color: var(--text-body);
    line-height: var(--leading-relaxed);
}

/* Gradient Cards */
.card-gradient-purple {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.card-gradient-pink {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-pink) 100%);
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-align: center;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

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

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

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

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

.btn-lg {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-lg);
}

/* ==========================================================================
   10. STATS DISPLAY
   ========================================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--space-2);
    display: block;
}

.stat-label {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-dark);
}

/* ==========================================================================
   11. SECTION TITLES
   ========================================================================== */

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    text-align: center;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-body);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
    line-height: var(--leading-relaxed);
}

/* ==========================================================================
   12. UTILITY CLASSES
   ========================================================================== */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Colors */
.text-dark { color: var(--text-dark); }
.text-body { color: var(--text-body); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--text-white); }
.text-primary { color: var(--primary-color); }

/* Background Colors */
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-gray { background-color: var(--bg-gray); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-white); }
.bg-primary { background-color: var(--primary-color); color: var(--text-white); }

/* Spacing Utilities */
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: var(--space-6);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--leading-loose);
}

.footer-section nav p {
    margin-bottom: var(--space-2);
}

.footer-section a {
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: var(--text-white);
}

/* Quick Links 2-column Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2) var(--space-6);
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
}

.quick-links-grid p {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   14. PAGE-SPECIFIC STYLES
   ========================================================================== */

/* Page Hero (smaller than main hero) */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-top: 70px;
}

.page-hero-content {
    text-align: left;
    color: var(--text-white);
    max-width: 1000px;
    padding: 0 var(--space-6);
}

.page-hero-content h1 {
    font-size: var(--text-6xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: var(--text-white);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--leading-loose);
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Detail Sections */
.detail-section {
    margin-bottom: var(--space-12);
}

.detail-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--text-dark);
    font-weight: 700;
}

.detail-lead {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: var(--text-dark);
    font-weight: 600;
}

.detail-text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
}

.detail-text strong {
    color: var(--text-dark);
}

/* Card Gradient */
.card-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--space-8);
}

.card-gradient h4 {
    color: white;
}

.card-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    font-weight: 700;
    color: white;
}

/* Checklists */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

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

.checklist li::before {
    content: '✓';
    margin-right: var(--space-2);
    font-weight: bold;
}

/* Philosophy Cards */
.philosophy-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.philosophy-card {
    padding: var(--space-6);
}

.philosophy-number {
    font-size: var(--text-xl);
    color: var(--primary-color);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.philosophy-subtitle {
    font-size: var(--text-sm);
    color: var(--text-body);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.philosophy-text {
    font-size: var(--text-sm);
    color: var(--text-body);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: var(--space-3);
    margin-bottom: var(--space-3);
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list strong {
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.feature-list span {
    font-size: var(--text-sm);
    color: var(--text-body);
}

/* Event Cards */
.event-card {
    padding: var(--space-8);
}

.event-title {
    font-size: var(--text-2xl);
    color: var(--accent-pink);
    margin-bottom: var(--space-4);
}

/* Client List */
.client-list {
    list-style: none;
    padding: 0;
}

.client-list li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border-light);
}

.client-list li:last-child {
    border-bottom: none;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list strong {
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.service-list span {
    font-size: var(--text-sm);
    color: var(--text-body);
}

/* CTA Section */
.cta-section {
    padding: var(--space-10) 0;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Gap utilities */
.gap-12 {
    gap: var(--space-12);
}

/* Intro Text */
.intro-text {
    font-size: var(--text-lg);
    color: var(--text-dark);
    line-height: var(--leading-loose);
    max-width: 800px;
    margin: 0 auto;
}

.intro-text strong {
    font-weight: 700;
}

/* Affiliate Styles */
.affiliate-info-box {
    display: flex;
    flex-direction: column;
}

.affiliate-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    background: var(--primary-color);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--space-8);
    align-self: flex-start;
}

.affiliate-company-name {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
    font-weight: 700;
    color: var(--text-dark);
}

.affiliate-company-full {
    font-size: var(--text-xl);
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: var(--space-6);
}

.affiliate-certification {
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-6);
}

.affiliate-certification strong {
    color: var(--text-dark);
}

.affiliate-description {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-body);
}

.affiliate-service-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--space-6);
}

.affiliate-service-list li {
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    padding-left: var(--space-6);
}

.affiliate-service-list h4 {
    color: white;
    margin-bottom: var(--space-2);
    font-size: var(--text-lg);
}

.affiliate-service-list p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

/* Company Info Card */
.company-info-card {
    margin-top: var(--space-12);
    padding: var(--space-10);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.company-info-title {
    color: var(--primary-color);
    margin-bottom: var(--space-6);
    font-size: var(--text-xl);
    font-weight: 600;
}

.company-info-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--space-4);
}

.company-info-list li {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-3);
}

.company-info-list .label {
    min-width: 120px;
    font-weight: 600;
    color: var(--text-dark);
}

.company-info-list .value {
    color: var(--text-body);
}

.certification-box {
    padding: var(--space-6);
    background: #f0f8ff;
    border-left: 4px solid var(--primary-color);
}

.cert-title {
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-dark);
}

.cert-detail {
    color: var(--text-body);
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
}

.cert-detail:last-child {
    margin-bottom: 0;
}

/* Synergy Cards */
.synergy-card {
    padding: var(--space-8);
    text-align: center;
}

.synergy-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.synergy-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--text-dark);
}

.synergy-card p {
    color: var(--text-body);
    line-height: var(--leading-relaxed);
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-10);
    gap: var(--space-6);
}

.process-step {
    flex: 1;
    text-align: center;
    padding: var(--space-6);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.process-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-3);
}

.process-step h3 {
    font-size: var(--text-lg);
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--text-body);
}

.process-arrow {
    font-size: var(--text-3xl);
    color: var(--primary-color);
    font-weight: 700;
}

/* Contact Page Styles */
.contact-method-card {
    padding: var(--space-8);
}

.contact-primary-info {
    font-size: var(--text-xl);
    color: var(--text-dark);
    font-weight: 600;
    margin-top: var(--space-4);
}

.contact-email {
    color: var(--primary-color);
    font-size: var(--text-lg);
}

.contact-secondary-info {
    margin-top: var(--space-4);
    color: var(--text-body);
}

/* Office Cards */
.office-card {
    padding: var(--space-8);
}

.office-title {
    margin-bottom: var(--space-6);
    font-size: var(--text-2xl);
    font-weight: 600;
}

.office-main {
    color: var(--primary-color);
}

.office-sub {
    color: var(--accent-pink);
}

.office-info-item {
    margin-bottom: var(--space-6);
}

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

.office-label {
    font-size: var(--text-base);
    color: var(--text-body);
    margin-bottom: var(--space-2);
}

.office-value {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-dark);
}

/* Business Hours Box */
.business-hours-box {
    display: flex;
    flex-direction: column;
}

.business-hours-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.business-hours-desc {
    font-size: var(--text-base);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-8);
    color: var(--text-body);
}

.hours-card {
    padding: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--border-color);
}

.hours-item-last {
    border-bottom: none;
}

.hours-label {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-value {
    color: var(--text-body);
}

/* Inquiry Box */
.inquiry-box {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--space-10);
    border-radius: var(--radius-lg);
    color: white;
}

.inquiry-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-4);
}

.inquiry-desc {
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-8);
    font-size: var(--text-base);
}

.inquiry-contact-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.inquiry-item {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-6);
    border-radius: var(--radius-md);
}

.inquiry-label {
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: white;
}

.inquiry-value {
    font-size: var(--text-xl);
    color: white;
    font-weight: 500;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    margin-bottom: var(--space-6);
    padding: var(--space-8);
}

.faq-card:last-child {
    margin-bottom: 0;
}

.faq-question {
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
    font-weight: 600;
}

.faq-answer {
    color: var(--text-body);
    line-height: var(--leading-relaxed);
}

/* ==========================================================================
   15. RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    :root {
        --text-6xl: 3rem;     /* 48px */
        --text-5xl: 2.5rem;   /* 40px */
        --text-4xl: 2rem;     /* 32px */
    }
    
    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero {
        min-height: 250px;
    }
    
    .page-hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .gap-12 {
        gap: var(--space-8);
    }
    
    .affiliate-company-name {
        font-size: var(--text-4xl);
    }
    
    .process-timeline {
        flex-wrap: wrap;
    }
    
    .process-arrow {
        display: none;
    }
    
    .inquiry-box {
        padding: var(--space-8);
    }
    
    .inquiry-title,
    .business-hours-title {
        font-size: var(--text-2xl);
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    :root {
        --text-6xl: 2.25rem;  /* 36px */
        --text-5xl: 1.875rem; /* 30px */
        --text-4xl: 1.5rem;   /* 24px */
        --text-3xl: 1.25rem;  /* 20px */
    }
    
    section {
        padding: var(--space-12) 0;
    }
    
    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
    
    nav {
        padding: var(--space-4);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: var(--space-8) var(--space-4);
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-base);
        gap: var(--space-4);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .page-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .page-hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .page-hero-subtitle {
        font-size: var(--text-base);
    }
    
    .detail-section {
        margin-bottom: var(--space-8);
    }
    
    .gap-12 {
        gap: var(--space-6);
    }
    
    .affiliate-company-name {
        font-size: var(--text-3xl);
    }
    
    .affiliate-company-full {
        font-size: var(--text-lg);
    }
    
    .company-info-card {
        padding: var(--space-6);
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .process-step {
        width: 100%;
    }
    
    .process-arrow {
        display: none;
    }
    
    .inquiry-box {
        padding: var(--space-6);
    }
    
    .inquiry-title,
    .business-hours-title {
        font-size: var(--text-xl);
    }
    
    .inquiry-value {
        font-size: var(--text-lg);
    }
    
    .faq-card {
        padding: var(--space-6);
    }
    
    .faq-question {
        font-size: var(--text-lg);
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
}

/* ==========================================================================
   15. ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ==========================================================================
   15.5 ADDITIONAL COMPONENTS
   ========================================================================== */

/* Info List (for Company Info) */
.info-list {
    list-style: none;
    padding: 0;
    margin-top: var(--space-8);
}

.info-item {
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item dt {
    color: var(--primary-color);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
}

.info-item dd {
    font-size: var(--text-xl);
    color: var(--text-dark);
    font-weight: var(--font-medium);
    margin: 0;
    line-height: var(--leading-relaxed);
}

/* Timeline Styles */
.timeline-year {
    margin-bottom: var(--space-16);
}

.timeline-year-title {
    font-size: var(--text-4xl);
    color: var(--primary-color);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--primary-color);
}

.card-title {
    color: var(--accent-color);
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    font-weight: var(--font-semibold);
}

.card-meta {
    color: var(--text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

/* Background Gradient for Hero */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* ==========================================================================
   16. ACCESSIBILITY
   ========================================================================== */

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
