/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0a0e14;
    --secondary-blue: #0f1419;
    --accent-blue: #141a21;
    --light-blue: #1a2028;
    --text-white: #ffffff;
    --text-light: #d4d4d4;
    --gold: #c9a961;
    --gold-light: #d4b877;
    --gold-dark: #a68a4f;
    --gradient-primary: linear-gradient(135deg, #0a0e14 0%, #0f1419 50%, #141a21 100%);
    --gradient-gold: linear-gradient(135deg, #c9a961 0%, #d4b877 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    background: var(--gradient-primary);
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Sophisticated Background Patterns for Different Pages */
body.pattern-home::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(201, 169, 97, 0.015) 2px, rgba(201, 169, 97, 0.015) 4px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

body.pattern-about::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(201, 169, 97, 0.12) 1px, transparent 0);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

body.pattern-approach::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 169, 97, 0.06) 2px, rgba(201, 169, 97, 0.06) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 169, 97, 0.04) 2px, rgba(201, 169, 97, 0.04) 4px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

body.pattern-people::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(201, 169, 97, 0.04) 2deg, transparent 4deg, rgba(201, 169, 97, 0.03) 6deg, transparent 8deg);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

body.pattern-platform::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(201, 169, 97, 0.03) 10px, rgba(201, 169, 97, 0.03) 11px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(201, 169, 97, 0.02) 10px, rgba(201, 169, 97, 0.02) 11px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

body.pattern-careers::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 25% 25%, rgba(201, 169, 97, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 75%, rgba(201, 169, 97, 0.04) 0%, transparent 40%),
        repeating-linear-gradient(30deg, transparent, transparent 3px, rgba(255, 255, 255, 0.01) 3px, rgba(255, 255, 255, 0.01) 6px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

body.pattern-contact::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(60deg, transparent, transparent 8px, rgba(201, 169, 97, 0.03) 8px, rgba(201, 169, 97, 0.03) 9px),
        repeating-linear-gradient(-60deg, transparent, transparent 8px, rgba(201, 169, 97, 0.02) 8px, rgba(201, 169, 97, 0.02) 9px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

body.pattern-login::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(201, 169, 97, 0.08) 1px, transparent 0),
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.015) 5px, rgba(255, 255, 255, 0.015) 6px);
    background-size: 35px 35px, 20px 20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.98) 0%, rgba(10, 14, 20, 0.97) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem 0;
    transition: all 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    animation: fadeInElegant 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-white);
    animation: fadeIn 0.6s ease-out;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.9;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-text {
    letter-spacing: 4px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 0.6s ease-out;
    opacity: 1;
}

nav a:hover {
    opacity: 0.8;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

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

nav a:hover {
    color: var(--gold-light);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e14 0%, #0f1419 30%, #141a21 60%, #0f1419 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    padding: 0 2rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: fadeInText 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    opacity: 1;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    animation: fadeInText 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.5rem;
    color: var(--text-white);
}

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

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

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInElegant {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
        filter: blur(4px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(20px) scale(0.98);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.1em;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(30px);
        filter: blur(6px) brightness(0.8);
    }
    60% {
        opacity: 0.7;
        filter: blur(2px) brightness(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0) brightness(1);
    }
}

/* Page Content */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.page-header {
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    animation: fadeInElegant 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInText 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInText 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
    opacity: 1;
}

/* Sections */
.section {
    margin-bottom: 6rem;
    position: relative;
    padding: 2rem 0;
    animation: fadeInElegant 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
    animation: fadeInText 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

.section h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: var(--gold);
    position: relative;
    padding-left: 1.5rem;
    animation: fadeInText 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    animation: fadeInText 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
    opacity: 1;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.section ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeIn 0.8s ease-out;
    opacity: 1;
}

.strategy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInElegant 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 180px;
    max-height: 180px;
}

.strategy-card:hover {
    opacity: 0.95;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.strategy-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 169, 97, 0.15);
}

.strategy-card-image {
    width: 40%;
    min-width: 300px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: fadeInImage 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.strategy-card:hover .strategy-card-image {
    transform: scale(1.02);
}

.strategy-card-content {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.strategy-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    line-height: 1.2;
}

.strategy-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* People Grid */
.people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 6rem;
    animation: fadeIn 0.8s ease-out;
    opacity: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.person-card {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    transition: opacity 0.3s ease;
}

.person-card:hover {
    opacity: 0.9;
}

.person-card:nth-child(1) { animation-delay: 0.1s; }
.person-card:nth-child(2) { animation-delay: 0.2s; }
.person-card:nth-child(3) { animation-delay: 0.3s; }
.person-card:nth-child(4) { animation-delay: 0.4s; }
.person-card:nth-child(5) { animation-delay: 0.5s; }
.person-card:nth-child(6) { animation-delay: 0.6s; }

.person-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-white);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.person-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.person-card:hover .person-image {
    transform: scale(1.08);
    border-color: var(--gold);
    box-shadow: 0 12px 48px rgba(201, 169, 97, 0.3);
}

.person-card:hover .person-image::before {
    opacity: 0.3;
}

.linkedin-icon {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border: 2px solid var(--primary-blue);
}

.linkedin-icon svg {
    width: 22px;
    height: 22px;
}

.linkedin-icon:hover {
    background: var(--gold-light);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.6);
}

.person-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.person-role {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Platform Features */
.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0;
    margin-bottom: 8rem;
    animation: fadeIn 0.8s ease-out;
    opacity: 1;
}

.section-advanced-tech {
    margin-bottom: 0 !important;
}

.section-proprietary {
    margin-top: 0;
    margin-bottom: 0 !important;
}

.section-execution {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section-data-infra {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.section-quantitative {
    margin-top: 0 !important;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid;
    border-image: var(--gradient-gold) 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: fadeInElegant 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.feature-card:hover {
    opacity: 0.95;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateX(12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 169, 97, 0.2);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Careers */
.job-listings {
    margin-top: 0;
    margin-bottom: 6rem;
    animation: fadeIn 0.8s ease-out;
    opacity: 1;
}

.section-open-positions {
    margin-bottom: 0 !important;
}

.job-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fadeInElegant 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.job-card:hover {
    opacity: 0.95;
}

.job-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(201, 169, 97, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 169, 97, 0.15);
}

.job-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.job-card .location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.job-card .description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    animation: fadeIn 0.8s ease-out;
    opacity: 1;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-form,
.login-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

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

.btn {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--primary-blue);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    border-radius: 4px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--primary-blue);
}

/* Typography - Serif font for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
}

.logo-text {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.98) 0%, rgba(10, 14, 20, 1) 100%);
    padding: 4rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    animation: fadeInElegant 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    transition: opacity 0.3s ease;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .hero h1 {
        font-size: 4rem;
        white-space: normal;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .strategy-grid,
    .people-grid,
    .platform-features {
        grid-template-columns: 1fr;
    }

    .strategy-card {
        flex-direction: column;
    }

    .strategy-card-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
        border-radius: 16px 16px 0 0;
    }

    .strategy-card-content {
        padding: 2rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        bottom: 2rem;
        right: 2rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .page-content {
        padding: 6rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
        white-space: normal;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(3px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(5px);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.98) 0%, rgba(15, 20, 25, 0.98) 100%);
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 169, 97, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.modal-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    color: var(--gold);
}

.modal-close {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    color: var(--text-light);
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.modal-body p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.modal-body ul li {
    margin-bottom: 0.8rem;
    list-style-type: disc;
}

.modal-body a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

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

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

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInElegant 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
    opacity: 1;
}

.stat-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote Section */
.quote-section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 3rem;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.quote-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -40px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 2rem;
}

/* Mandate Section */
.mandate-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInElegant 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.mandate-header {
    text-align: center;
    margin-bottom: 6rem;
}

.mandate-section h2 {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--text-white);
}

/* Mandate Features */
.mandate-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeIn 0.8s ease-out;
    opacity: 1;
}

.mandate-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: fadeInElegant 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.mandate-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.6);
}

.mandate-feature-item:hover::before {
    height: 100%;
}

.mandate-feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.6);
}

.mandate-feature-item:hover::after {
    width: 100%;
}

.mandate-feature-item:hover {
    transform: translateY(-8px) translateX(8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 169, 97, 0.2);
}

.mandate-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mandate-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px;
}

.mandate-feature-item:hover .mandate-icon-wrapper::before {
    opacity: 0.2;
}

.mandate-feature-item:hover .mandate-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(201, 169, 97, 0.6);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.mandate-icon {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
    stroke-width: 1.5;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.mandate-feature-item:hover .mandate-icon {
    stroke: var(--gold-light);
    transform: scale(1.1);
}

.mandate-content {
    flex: 1;
}

.mandate-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.mandate-feature-item:hover .mandate-content h3 {
    color: var(--gold-light);
}

.mandate-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mandate-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.mandate-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.mandate-link:hover::after {
    width: 100%;
}

.mandate-link:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .mandate-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mandate-section h2 {
        font-size: 2.2rem;
    }
    
    .mandate-feature-item {
        padding: 2rem;
    }
}

/* History Timeline */
.history-timeline {
    margin: 5rem 0;
    padding: 3rem 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(201, 169, 97, 0.2) 0%,
        rgba(201, 169, 97, 0.4) 25%,
        rgba(201, 169, 97, 0.6) 50%,
        rgba(201, 169, 97, 0.8) 75%,
        rgba(201, 169, 97, 1) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
    opacity: 0;
    animation: timelineLineDraw 2s ease-out 0.5s forwards;
}

@keyframes timelineLineDraw {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 100%;
        opacity: 1;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.8s;
}

.timeline-item:nth-child(2) {
    animation-delay: 1.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 1.6s;
}

.timeline-item:nth-child(4) {
    animation-delay: 2s;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 3rem;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.3),
                0 0 20px rgba(201, 169, 97, 0.6),
                0 0 40px rgba(201, 169, 97, 0.3);
    z-index: 2;
    opacity: 0;
    animation: markerPulse 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.timeline-item:nth-child(1) .timeline-marker {
    animation-delay: 1s;
}

.timeline-item:nth-child(2) .timeline-marker {
    animation-delay: 1.4s;
}

.timeline-item:nth-child(3) .timeline-marker {
    animation-delay: 1.8s;
}

.timeline-item:nth-child(4) .timeline-marker {
    animation-delay: 2.2s;
}

@keyframes markerPulse {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.timeline-marker::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    animation: ripple 2s ease-out infinite;
}

.timeline-item:hover .timeline-marker::before {
    animation: ripple 1s ease-out infinite;
}

@keyframes ripple {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.timeline-content {
    flex: 1;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.5s ease;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: 0;
    left: auto;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 97, 0.2);
}

.timeline-item:hover .timeline-content::before {
    height: 100%;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 300;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) .timeline-year {
    animation-delay: 1.1s;
}

.timeline-item:nth-child(2) .timeline-year {
    animation-delay: 1.5s;
}

.timeline-item:nth-child(3) .timeline-year {
    animation-delay: 1.9s;
}

.timeline-item:nth-child(4) .timeline-year {
    animation-delay: 2.3s;
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.timeline-item:nth-child(odd) .timeline-content h3 {
    animation-name: slideInFromRight;
}

.timeline-item:nth-child(1) .timeline-content h3 {
    animation-delay: 1.2s;
}

.timeline-item:nth-child(2) .timeline-content h3 {
    animation-delay: 1.6s;
}

.timeline-item:nth-child(3) .timeline-content h3 {
    animation-delay: 2s;
}

.timeline-item:nth-child(4) .timeline-content h3 {
    animation-delay: 2.4s;
}

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

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

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) .timeline-content p {
    animation-delay: 1.3s;
}

.timeline-item:nth-child(2) .timeline-content p {
    animation-delay: 1.7s;
}

.timeline-item:nth-child(3) .timeline-content p {
    animation-delay: 2.1s;
}

.timeline-item:nth-child(4) .timeline-content p {
    animation-delay: 2.5s;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-item .timeline-content {
        margin-left: 4rem !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 2rem;
    }
    
    .timeline-content {
        max-width: 100%;
    }
}

/* Values Circular Chart */
.values-chart-container {
    margin: 5rem 0;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 700px;
    padding: 100px 0;
}

.values-chart {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 40px rgba(201, 169, 97, 0.2));
}

.chart-background {
    animation: fadeIn 1s ease-out 0.3s both;
}

.chart-segment {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: 200px 200px;
    cursor: pointer;
}

.segment-innovation {
    animation: segmentDraw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.segment-integrity {
    animation: segmentDraw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.segment-excellence {
    animation: segmentDraw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.segment-collaboration {
    animation: segmentDraw 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

@keyframes segmentDraw {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.chart-segment:hover {
    opacity: 0.9 !important;
    transform: scale(1.05);
    filter: url(#glow) brightness(1.2);
}

.chart-center {
    animation: centerPulse 1.5s ease-out 1.3s both;
}

@keyframes centerPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.chart-center-text {
    animation: fadeInText 0.8s ease-out 1.6s both;
}

.value-item {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.value-item.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.value-innovation:hover {
    transform: translateX(-50%) scale(1.1);
}

.value-integrity:hover {
    transform: translateY(-50%) scale(1.1);
}

.value-excellence:hover {
    transform: translateX(-50%) scale(1.1);
}

.value-collaboration:hover {
    transform: translateY(-50%) scale(1.1);
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 97, 0.2);
    z-index: 10;
}

.value-innovation {
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: valueItemAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}

.value-integrity {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation: valueItemAppearRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.value-excellence {
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: valueItemAppearBottom 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
}

.value-collaboration {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation: valueItemAppearLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 2.4s forwards;
}

@keyframes valueItemAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes valueItemAppearRight {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes valueItemAppearBottom {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes valueItemAppearLeft {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}


.value-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-align: center;
    order: 1;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    order: 2;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    filter: drop-shadow(0 2px 6px rgba(201, 169, 97, 0.4));
    transition: stroke 0.3s ease, filter 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-item:hover .value-icon svg {
    stroke: var(--gold-light);
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.6));
}

.value-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    order: 3;
    margin-top: auto;
}

.value-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.6);
    z-index: -1;
}

.value-item:hover::before {
    opacity: 0.3;
}

/* Interactive connection lines */
.value-item::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    opacity: 0;
    transition: height 0.5s ease, opacity 0.3s ease;
    z-index: -1;
}

.value-innovation::after {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.value-integrity::after {
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.value-excellence::after {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.value-collaboration::after {
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.value-item:hover::after {
    height: 50px;
    opacity: 0.4;
}

@media (max-width: 968px) {
    .values-chart-wrapper {
        min-height: auto;
    }
    
    .value-item {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    .value-innovation,
    .value-integrity,
    .value-excellence,
    .value-collaboration {
        animation: valueItemAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .value-item::after {
        display: none;
    }
}

/* Podcasts Section */
.podcasts-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.podcasts-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 2px;
}

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

.podcast-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.podcast-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 24px rgba(201, 169, 97, 0.1);
}

.podcast-date {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.podcast-title {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.podcast-play {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.podcast-play:hover {
    color: var(--gold-light);
}

/* Intro Section */
.intro-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInElegant 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.intro-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.intro-logo {
    flex-shrink: 0;
}

.intro-logo-img {
    width: 320px;
    height: auto;
    opacity: 0.9;
    transition: all 0.4s ease, opacity 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.2));
    animation: fadeInScale 0.8s ease-out;
}

.intro-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(201, 169, 97, 0.4));
}

.intro-text {
    flex: 1;
    text-align: left;
}

.intro-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .intro-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .intro-logo-img {
        width: 220px;
    }
}

/* Image Styles */
.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInImage 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.content-image:hover {
    opacity: 0.85;
    transform: scale(1.02);
}
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(201, 169, 97, 0.2);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.image-grid img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-grid img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(201, 169, 97, 0.2);
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Value Item Modals */
.value-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInModalBackdrop 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.value-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 1;
}

.value-modal:not(.active) {
    animation: fadeOutModalBackdrop 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

@keyframes fadeInModalBackdrop {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

@keyframes fadeOutModalBackdrop {
    from {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
}

@keyframes slideUpModalIn {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.85) rotateX(10deg);
        filter: blur(15px) brightness(0.7);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02) rotateX(-2deg);
        filter: blur(5px) brightness(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0) brightness(1);
    }
}

@keyframes slideUpModalOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0) brightness(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(20px) scale(0.95) rotateX(5deg);
        filter: blur(8px) brightness(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(60px) scale(0.9) rotateX(10deg);
        filter: blur(12px) brightness(0.6);
    }
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: scale(1.15) translateY(10px);
        filter: brightness(0.4) contrast(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) translateY(-5px);
        filter: brightness(0.8) contrast(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: brightness(1) contrast(1);
    }
}

.value-modal-content {
    position: relative;
    max-width: 50%;
    width: 50%;
    max-height: 60vh;
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.98) 0%, rgba(15, 20, 25, 0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 169, 97, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(80px) scale(0.85) rotateX(10deg);
    filter: blur(15px) brightness(0.7);
    animation: slideUpModalIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.value-modal.active .value-modal-content {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0) brightness(1);
}

.value-modal:not(.active) .value-modal-content {
    animation: slideUpModalOut 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

.value-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    line-height: 1;
    padding: 0;
}

.value-modal-close:hover {
    background: rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.5);
    color: var(--gold-light);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
}

.value-modal-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.5) 0%, rgba(15, 20, 25, 0.5) 100%);
}

.value-modal-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.value-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.15) translateY(10px);
    filter: brightness(0.4) contrast(0.8);
    animation: fadeInImage 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.value-modal.active .value-modal-image img {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: brightness(1) contrast(1);
}

.value-modal:not(.active) .value-modal-image img {
    animation: fadeOutImage 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

.value-modal-image:hover img {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05);
}

@keyframes fadeOutImage {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: brightness(1) contrast(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
        filter: brightness(0.6) contrast(0.8);
    }
}

.value-modal-body {
    padding: 2rem;
    max-height: calc(60vh - 240px);
    overflow-y: auto;
    animation: fadeInText 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.value-modal-body h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(5px);
    animation: fadeInText 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.value-modal:not(.active) .value-modal-body p {
    animation: fadeOutText 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

.value-modal-body p:nth-child(2) {
    animation-delay: 0.75s;
}

.value-modal-body p:nth-child(3) {
    animation-delay: 0.85s;
}

.value-modal-body p:nth-child(4) {
    animation-delay: 0.95s;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(5px);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-5px) scale(1.01);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeOutText {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
        filter: blur(3px);
    }
}

@media (max-width: 768px) {
    .value-modal-content {
        max-width: 90%;
        width: 90%;
        max-height: 70vh;
        border-radius: 16px;
    }

    .value-modal-image {
        height: 180px;
    }

    .value-modal-body {
        padding: 1.5rem;
        max-height: calc(70vh - 180px);
    }

    .value-modal-body h2 {
        font-size: 1.8rem;
    }

    .value-modal-body p {
        font-size: 1rem;
    }

    .value-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

