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

:root {
    --primary: #8B3DFF;
    --secondary: #FF6B35;
    --accent: #00D9FF;
    --dark: #1a1a2e;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-y: scroll; /* Luôn hiển thị scrollbar để tránh layout shift */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
#navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000 !important;
    transition: all 0.3s ease;
}

#navbar .container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
    position: relative;
}

.logo {
    flex-shrink: 0;
    background: transparent !important;
    display: inline-block;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: normal;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.4rem 1rem;
    border: none;
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

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

/* Video Background */
.video-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(139, 61, 255, 0.5) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo img {
    height: 150px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: 'Roboto', sans-serif;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.3s backwards;
    letter-spacing: -0.01em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 61, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 61, 255, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    opacity: 0.7;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--light);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.15);
    border-color: var(--primary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    color: white;
    font-size: 1.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
}

.featured-section .section-title.text-center {
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

/* Inline section header - 3 text elements on same line */
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* When right is empty, add invisible spacer to center the title */
.section-header-right:empty::after {
    content: '';
    display: block;
    flex: 1 1 auto;
}

.section-header-left,
.section-header-center,
.section-header-right {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.section-header-center {
    font-weight: 700;
    color: var(--dark);
    flex: 0 0 auto;
    text-align: center;
}

/* Gradient pill-shaped title */
.section-title-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(139, 61, 255, 0.2);
    white-space: nowrap;
}

.section-header-two-col .section-title-gradient {
    position: relative;
    z-index: 2;
}

.section-header-left {
    flex: 1 1 auto;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-header-right {
    flex: 1 1 auto;
    text-align: right;
}

.section-header-right:empty {
    display: none;
}

/* Two column layout - center the title */
.section-header-two-col {
    position: relative;
}

.section-header-two-col::after {
    content: '';
    flex: 1 1 auto;
}

.section-header-two-col .section-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.section-header-two-col .section-header-left {
    position: relative;
    z-index: 1;
}

/* Centered header layout - only gradient title */
.section-header-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
}

h2.section-title,
h3.section-title,
h4.section-title,
h5.section-title,
h6.section-title,
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background images for each service card */
.service-card:nth-child(1) {
    background-image: url('../images/san_xuat_video.jpg');
}

.service-card:nth-child(2) {
    background-image: url('../images/quan_ly_youtube.jpg');
}

.service-card:nth-child(3) {
    background-image: url('../images/sang_tao_noi_dung.jpg');
}

.service-card:nth-child(4) {
    background-image: url('../images/hop_tac_san_xuat.jpg');
}

/* Dark overlay for better text readability */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    z-index: 0;
    transition: background-color 0.3s ease;
}

.service-card:hover::after {
    background-color: rgba(0, 0, 0, 0.6);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 61, 255, 0.15);
    border-color: var(--primary);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.9), rgba(139, 61, 255, 0.8));
    border-radius: 20px;
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(139, 61, 255, 0.3);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 61, 255, 0.5);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Platforms Section */
.platforms-section {
    padding: 5rem 0;
    background: var(--light);
    text-align: center;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: scale(1.1);
}

.platform-item i {
    font-size: 4rem;
    color: var(--primary);
}

.platform-item span {
    font-weight: 600;
    color: var(--dark);
}

/* About Hero */
.about-hero {
    padding: 9rem 0 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 1rem;
    display: inline-block;
}

.about-hero .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.metric-card {
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.metric-label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

/* About Overview */
.about-overview {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
    font-weight: 600;
}

.about-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats */
.info-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.info-stat {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.08), rgba(0, 217, 255, 0.08));
    border-radius: 15px;
    text-align: center;
}

.info-stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Info Card shared */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--dark);
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-list i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.info-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.info-list span {
    display: block;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Values Grid */
/* Values Grid */
.about-values {
    padding: 6rem 0;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    color: white;
}

.value-icon.blue { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.value-icon.green { background: linear-gradient(135deg, #10B981, #059669); }
.value-icon.purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.value-icon.orange { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.value-icon.red { background: linear-gradient(135deg, #EF4444, #DC2626); }

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
}

/* Culture */
.about-culture {
    padding: 6rem 0;
}

/* Vision Grid */
.about-vision {
    padding: 6rem 0;
    background: var(--light);
}

/* Vision Mission Cards Layout */
.vision-mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
}

.vm-card {
    background: white;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Animated gradient border on top */
.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow effect background */
.vm-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.vm-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 61, 255, 0.2);
}

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

.vm-card:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.3), rgba(74, 144, 226, 0.3));
}

/* Icon container with enhanced effects */
.vm-card-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.75rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shine effect on icon */
.vm-card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.vm-card:hover .vm-card-icon::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Icon pulse effect */
.vm-card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    opacity: 0;
    transition: all 0.5s ease;
}

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

.vm-card:hover .vm-card-icon::after {
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Vision icon styling */
.vm-card-vision .vm-card-icon {
    background: linear-gradient(135deg, #8B3DFF, #6B2DD9);
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.4);
}

.vm-card:hover.vm-card-vision .vm-card-icon {
    box-shadow: 0 15px 40px rgba(139, 61, 255, 0.6);
    background: linear-gradient(135deg, #9B4DFF, #7B3DE9);
}

.vm-card-vision .vm-card-icon::after {
    background: radial-gradient(circle, rgba(139, 61, 255, 0.4), transparent);
}

/* Mission icon styling */
.vm-card-mission .vm-card-icon {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.vm-card:hover.vm-card-mission .vm-card-icon {
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.6);
    background: linear-gradient(135deg, #5AA0F2, #458ACD);
}

.vm-card-mission .vm-card-icon::after {
    background: radial-gradient(circle, rgba(74, 144, 226, 0.4), transparent);
}

/* Values icon styling */
.vm-card-values .vm-card-icon {
    background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.vm-card:hover.vm-card-values .vm-card-icon {
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #FF7B7B, #FE6A7F);
}

.vm-card-values .vm-card-icon::after {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.4), transparent);
}

/* Content styling */
.vm-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.vm-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 1.75rem 0;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-card-title {
    transform: translateY(-2px);
}

.vm-card-vision .vm-card-title {
    color: #8B3DFF;
}

.vm-card-mission .vm-card-title {
    color: #4A90E2;
}

.vm-card-values .vm-card-title {
    color: #FF6B6B;
}

.vm-card-text {
    color: var(--gray);
    line-height: 1.85;
    font-size: 1.05rem;
    margin: 0 0 1.5rem 0;
    transition: color 0.3s ease;
    text-align: justify;
}

.vm-card:hover .vm-card-text {
    color: #4a5568;
}

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

/* Responsive for Vision Mission Cards */
@media (max-width: 1200px) {
    .vision-mission-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .vm-card {
        padding: 3rem;
    }
}

@media (max-width: 968px) {
    .vision-mission-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .vm-card {
        padding: 3rem;
    }
    
    .vm-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .vm-card-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .vision-mission-cards {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .vm-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .vm-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.75rem;
    }
    
    .vm-card-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .vm-card-text {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 1.25rem;
    }
}

/* Legacy support for old vision-grid */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.vision-card {
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.15);
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    font-size: 2.5rem;
    color: white;
}

/* Team */
.about-team {
    padding: 6rem 0;
}

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

.team-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 3rem;
    color: white;
}

/* Different gradient colors for each team icon */
.team-card:nth-child(1) .team-icon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.team-card:nth-child(2) .team-icon {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.team-card:nth-child(3) .team-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.join-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary)/10, var(--accent)/10);
    border-radius: 20px;
}

.join-cta h2 {
    margin-bottom: 1rem;
}

.join-cta p {
    margin-bottom: 2rem;
    color: var(--gray);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(139, 61, 255, 0.1);
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 55px;
    margin-bottom: 1.5rem;
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: normal;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

.footer-col:first-child {
    max-width: 350px;
}

.footer-col p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 61, 255, 0.08);
    color: var(--primary);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 61, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 61, 255, 0.3);
    border-color: transparent;
}

.footer-col h4 {
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.875rem;
}

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col ul li a {
    color: var(--gray);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 12px;
}

.footer-col ul li a:hover::before {
    width: 6px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--accent);
    margin-top: 0.25rem;
    font-size: 1.1rem;
    min-width: 20px;
    flex-shrink: 0;
}

.contact-info li a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(139, 61, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom strong {
    color: var(--dark);
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.form-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 61, 255, 0.1);
}

.form-group label {
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    color: var(--gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary);
    background: white;
    padding: 0 0.5rem;
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 61, 255, 0.3);
}

.btn-submit i {
    margin-left: 0.5rem;
}

/* Careers Page Styles */
.careers-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.15);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    color: white;
    font-size: 2.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
    background: var(--light);
}

.jobs-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.jobs-list {
    display: grid;
    gap: 2rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.1);
    border-color: var(--primary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.job-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta i {
    color: var(--primary);
}

.job-posted {
    color: var(--gray);
    font-size: 0.9rem;
    white-space: nowrap;
}

.job-description {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

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

.no-jobs {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.no-jobs i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Culture Section */
.culture-section {
    padding: 5rem 0;
}

.culture-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culture-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.culture-image:hover img {
    transform: scale(1.05);
}

.culture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
}

.culture-overlay h3 {
    font-size: 1.75rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary);
    background: rgba(139, 61, 255, 0.1);
}

.job-post-form,
.apply-form {
    padding: 2rem;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--gray);
}

.file-label:hover {
    border-color: var(--primary);
    background: rgba(139, 61, 255, 0.05);
    color: var(--primary);
}

.file-name {
    display: block;
    margin-top: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.job-details-modal {
    width: 100%;
}

.job-details-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.job-details-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.job-section {
    margin: 2rem 0;
}

.job-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.job-section pre {
    white-space: pre-wrap;
    font-family: 'Roboto', sans-serif;
    color: var(--gray);
    line-height: 1.7;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(139, 61, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-logo img {
        height: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-header-inline {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .section-header-left,
    .section-header-right {
        text-align: center;
        flex: 1 1 100%;
    }
    
    .section-header-center {
        flex: 1 1 100%;
    }
    
    /* Two column layout responsive */
    .section-header-two-col::after {
        display: none;
    }
    
    .section-header-two-col .section-header-center {
        position: static;
        transform: none;
        width: 100%;
    }
    
    /* Centered header responsive */
    .section-header-centered {
        margin-bottom: 2rem;
    }
    
    /* Gradient title responsive */
    .section-title-gradient {
        padding: 0.625rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    /* Footer Responsive */
    .footer {
        padding: 3.5rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-col:first-child {
        max-width: 100%;
    }
    
    .footer-col h4 {
        margin-bottom: 1.25rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    h2.section-title,
    h3.section-title,
    h4.section-title,
    h5.section-title,
    h6.section-title,
    .section-title {
        font-size: 1.75rem;
        font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    }
}

/* Additional Sections */

/* Intro Section */
.intro-section {
    padding: 6rem 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 2rem 0;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.service-features i {
    color: var(--primary);
    margin-top: 0.25rem;
    filter: drop-shadow(0 2px 4px rgba(139, 61, 255, 0.5));
}

/* Platform Cards */
.platform-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(139, 61, 255, 0.15);
}

.platform-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 3.5rem;
}

.platform-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
}

.platform-icon.spotify {
    background: linear-gradient(135deg, #1DB954, #1AA34A);
    color: white;
}

.platform-icon.apple {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.platform-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.platform-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Link Button */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 1rem;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-background video {
        min-width: 200%;
    }
    
    .intro-section,
    .services-preview,
    .cta-section {
        padding: 4rem 0;
    }
    
    .platform-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}