:root {
    /* Brand Colors */
    --primary-color: #1867DB;
    --primary-light: #4A8DEB;
    --primary-lighter: #7BABF2;
    --primary-dark: #124DA4;
    --primary-darker: #0D3A7A;
    --primary-bg: #E8F0FB;
    --primary-bg-subtle: #F0F5FD;

    /* Neutral Colors */
    --text-color: #1A1A2E;
    --text-muted: #6B7280;
    --bg-light: #F8FAFD;
    --white: #FFFFFF;
    --border-color: #E5E7EB;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(24,103,219,0.12);
    --shadow-xl: 0 20px 60px rgba(24,103,219,0.18);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== HEADER ==================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.brand-icon {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: var(--primary-bg-subtle);
}

.nav-links a.active {
    color: var(--primary-color);
    background: var(--primary-bg);
}

/* ==================== BUTTONS ==================== */
.btn-try {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 103, 219, 0.3);
}

.btn-try:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(24, 103, 219, 0.4);
}

.btn-try svg {
    transition: transform 0.3s ease;
}

.btn-try:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

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

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-bg);
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: var(--primary-bg-subtle);
    transform: translateY(-2px);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, var(--primary-bg) 0%, var(--white) 70%);
}

/* Floating background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--primary-bg) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, #D4E4FA 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 10%;
    background: radial-gradient(circle, var(--primary-bg-subtle) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(24, 103, 219, 0.15);
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
}

html[lang="ka"] .hero h1 {
    line-height: 1.25;
    letter-spacing: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    padding: 6rem 20px;
    background: var(--white);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-bg), transparent);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.process-section h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.process-step {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--primary-bg);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== COMPLIANCE SECTION ==================== */
.compliance-section {
    padding: 6rem 20px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-bg), transparent);
}

.compliance-section h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.compliance-card {
    position: relative;
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: left;
    overflow: hidden;
}

.compliance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.compliance-icon {
    margin-bottom: 1.25rem;
}

.compliance-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.compliance-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.compliance-tag {
    display: inline-block;
    background: var(--primary-bg-subtle);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(24, 103, 219, 0.1);
}

/* Compliance Banner */
.compliance-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.compliance-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.compliance-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-decoration {
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
}

.banner-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.banner-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.banner-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-top: 0.15rem;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
}

/* Compliance stagger animation */
.compliance-card.fade-in:nth-child(1) { transition-delay: 0s; }
.compliance-card.fade-in:nth-child(2) { transition-delay: 0.15s; }
.compliance-card.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-color);
    color: rgba(255,255,255,0.7);
    padding: 3rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .brand {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer .brand-icon {
    color: var(--white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.95rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* ==================== LANGUAGE SWITCHER (Header) ==================== */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-divider {
    width: 1px;
    height: 20px;
    background: var(--border-color);
}

.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 6px;
    padding: 2px;
    gap: 2px;
}

.lang-toggle-btn {
    padding: 0.3rem 0.6rem;
    border: none;
    border-radius: 5px;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.lang-toggle-btn:hover {
    color: var(--primary-color);
}

.lang-toggle-btn.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ==================== LANGUAGE SWITCHER (Footer) ==================== */
.footer-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-lang svg {
    opacity: 0.5;
}

.footer-lang-option {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-lang-option:hover {
    color: var(--white);
}

.footer-lang-option.active {
    color: rgba(255, 255, 255, 0.9);
}

.footer-lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.85rem;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for process steps */
.process-step.fade-in:nth-child(1) { transition-delay: 0s; }
.process-step.fade-in:nth-child(2) { transition-delay: 0.1s; }
.process-step.fade-in:nth-child(3) { transition-delay: 0.2s; }
.process-step.fade-in:nth-child(4) { transition-delay: 0.3s; }
.process-step.fade-in:nth-child(5) { transition-delay: 0.4s; }
.process-step.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Hero content fades in immediately */
.hero .fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

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

/* ==================== ABOUT PAGE - HERO ==================== */
.about-hero {
    position: relative;
    padding: 8rem 20px 5rem;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, var(--primary-bg) 0%, var(--white) 70%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.8rem;
    color: var(--text-color);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -1.5px;
}

html[lang="ka"] .about-hero h1 {
    line-height: 1.3;
    letter-spacing: 0;
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-hero .fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ==================== ABOUT PAGE - MISSION ==================== */
.about-mission {
    padding: 6rem 20px;
    background: var(--white);
    position: relative;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-bg), transparent);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.mission-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.mission-content .section-badge {
    margin-bottom: 1rem;
}

.mission-content h2 {
    font-size: 2.6rem;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

html[lang="ka"] .mission-content h2 {
    line-height: 1.35;
    letter-spacing: 0;
}

.mission-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* ==================== ABOUT PAGE - VALUES ==================== */
.about-values {
    padding: 6rem 20px;
    background: var(--bg-light);
    position: relative;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-bg), transparent);
}

.about-values h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-lighter));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: var(--white);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Values stagger animation */
.value-card.fade-in:nth-child(1) { transition-delay: 0s; }
.value-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.value-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.value-card.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ==================== ABOUT PAGE - STORY / TIMELINE ==================== */
.about-story {
    padding: 6rem 20px;
    background: var(--white);
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-bg), transparent);
}

.about-story h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.story-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 2rem;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 28px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-bg), var(--primary-lighter), var(--primary-bg));
}

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

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

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 1.5rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-bg);
    z-index: 2;
}

.timeline-card {
    background: var(--bg-light);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

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

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-bg);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.timeline-card h3 {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Timeline stagger */
.timeline-item.fade-in:nth-child(2) { transition-delay: 0s; }
.timeline-item.fade-in:nth-child(3) { transition-delay: 0.15s; }
.timeline-item.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ==================== ABOUT PAGE - CTA ==================== */
.about-cta {
    padding: 6rem 20px;
    background: var(--bg-light);
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-bg), transparent);
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-cta-container::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta-decoration {
    margin-bottom: 1.5rem;
}

.about-cta-container h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.about-cta-container p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .compliance-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .banner-stats {
        justify-content: center;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mission-visual {
        order: -1;
    }

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

    .mission-highlights {
        align-items: center;
    }

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

@media (max-width: 768px) {
    .header-left {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 1.05rem;
    }

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

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

    .process-section h2 {
        font-size: 2.2rem;
    }

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

    .compliance-section h2 {
        font-size: 2.2rem;
    }

    .compliance-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.75rem;
    }

    .banner-stats {
        gap: 1rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .mission-content h2,
    .about-values h2,
    .about-story h2 {
        font-size: 2.2rem;
    }

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

    .mission-illustration svg {
        width: 260px;
        height: auto;
    }

    .about-cta-container {
        padding: 2.5rem 1.5rem;
    }

    .about-cta-container h2 {
        font-size: 1.6rem;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-line {
        left: 22px;
    }

    .timeline-dot {
        left: 14px;
    }
}