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

:root {
    --primary-blue: #007AFF;
    --primary-blue-dark: #0051D5;
    --primary-blue-light: #5AC8FA;
    --bg-gradient-start: #000000;
    --bg-gradient-end: #0A0A0C;
    --text-primary: #F5F5F7;
    --text-secondary: #A1A1A6;
    --white: #FFFFFF;
    --dark-bg: #0A0A0C;
    --dark-card: #1A1A1F;
    --dark-card-hover: #242428;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-gradient-start);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 400px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    border-left: 3px solid #22C55E;
}

.toast-error {
    border-left: 3px solid #EF4444;
}

.toast-icon {
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: #22C55E;
}

.toast-error .toast-icon {
    color: #EF4444;
}

.toast-message {
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Parallax Background Layers - Enhanced */
.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Base Gradient Layer */
.layer-1 {
    background: linear-gradient(180deg, #000000 0%, #0A0A0C 25%, #050505 50%, #0A0A0C 75%, #000000 100%);
    background-size: 100% 400%;
    animation: gradientFlow 20s ease infinite;
    z-index: 1;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

/* Blue Glow Layer 1 */
.layer-2 {
    background: 
        radial-gradient(ellipse 1200px 800px at 15% 20%, rgba(0, 122, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 1000px 600px at 85% 80%, rgba(90, 200, 250, 0.12) 0%, transparent 60%);
    opacity: 0.6;
    z-index: 2;
    animation: layerPulse 8s ease-in-out infinite;
}

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

/* Blue Glow Layer 2 */
.layer-3 {
    background: 
        radial-gradient(ellipse 800px 1000px at 60% 15%, rgba(90, 200, 250, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 900px 700px at 30% 85%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    opacity: 0.4;
    z-index: 3;
    animation: layerRotate 25s linear infinite;
}

@keyframes layerRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Additional Depth Layers */
.layer-4 {
    background: 
        radial-gradient(circle 600px at 50% 50%, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 4;
    animation: layerFloat 15s ease-in-out infinite;
}

@keyframes layerFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-50px) scale(1.1);
    }
}

.layer-5 {
    background: 
        radial-gradient(ellipse 1500px 1200px at 70% 30%, rgba(90, 200, 250, 0.06) 0%, transparent 60%);
    opacity: 0.25;
    z-index: 5;
}

.layer-6 {
    background: 
        radial-gradient(circle 800px at 20% 70%, rgba(0, 122, 255, 0.05) 0%, transparent 60%);
    opacity: 0.2;
    z-index: 6;
}

/* Floating Parallax Orbs */
.parallax-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    will-change: transform;
    transform: translateZ(0);
    pointer-events: none;
}

.parallax-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.3) 0%, rgba(0, 122, 255, 0.1) 50%, transparent 100%);
    top: 10%;
    left: -10%;
    animation: orbFloat1 25s ease-in-out infinite;
    z-index: 7;
}

.parallax-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.25) 0%, rgba(90, 200, 250, 0.1) 50%, transparent 100%);
    top: 60%;
    right: -5%;
    animation: orbFloat2 30s ease-in-out infinite;
    z-index: 8;
}

.parallax-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, rgba(0, 122, 255, 0.08) 50%, transparent 100%);
    bottom: 20%;
    left: 15%;
    animation: orbFloat3 20s ease-in-out infinite;
    z-index: 7;
}

.parallax-orb.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.2) 0%, rgba(90, 200, 250, 0.08) 50%, transparent 100%);
    top: 40%;
    right: 20%;
    animation: orbFloat4 35s ease-in-out infinite;
    z-index: 8;
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -80px) scale(1.1);
    }
    50% {
        transform: translate(50px, -150px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -80px) scale(1.05);
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-120px, 100px) scale(1.15);
    }
    66% {
        transform: translate(-60px, -50px) scale(0.95);
    }
}

@keyframes orbFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, -100px) scale(1.2);
    }
}

@keyframes orbFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-60px, 80px) scale(1.1);
    }
    50% {
        transform: translate(-120px, 40px) scale(0.9);
    }
    75% {
        transform: translate(-60px, -40px) scale(1.05);
    }
}

/* Animated Grid */
.parallax-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(0, 122, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 122, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.4;
    z-index: 9;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* Floating Shapes */
.parallax-shape {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    transform: translateZ(0);
    pointer-events: none;
}

.parallax-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(90, 200, 250, 0.05) 100%);
    top: 15%;
    right: 10%;
    animation: shapeRotate1 40s linear infinite;
    z-index: 10;
    filter: blur(40px);
}

.parallax-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(90, 200, 250, 0.08) 0%, rgba(0, 122, 255, 0.04) 100%);
    bottom: 30%;
    left: 8%;
    animation: shapeRotate2 35s linear infinite reverse;
    z-index: 10;
    filter: blur(30px);
}

.parallax-shape.shape-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(225deg, rgba(0, 122, 255, 0.1) 0%, rgba(90, 200, 250, 0.06) 100%);
    top: 70%;
    right: 25%;
    animation: shapeRotate3 45s linear infinite;
    z-index: 10;
    filter: blur(35px);
}

@keyframes shapeRotate1 {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0);
    }
    25% {
        transform: rotate(90deg) translateX(50px) translateY(-30px);
    }
    50% {
        transform: rotate(180deg) translateX(0) translateY(-60px);
    }
    75% {
        transform: rotate(270deg) translateX(-50px) translateY(-30px);
    }
    100% {
        transform: rotate(360deg) translateX(0) translateY(0);
    }
}

@keyframes shapeRotate2 {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0) scale(1);
    }
    33% {
        transform: rotate(120deg) translateX(40px) translateY(40px) scale(1.2);
    }
    66% {
        transform: rotate(240deg) translateX(-40px) translateY(40px) scale(0.8);
    }
    100% {
        transform: rotate(360deg) translateX(0) translateY(0) scale(1);
    }
}

@keyframes shapeRotate3 {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateX(-60px) translateY(60px);
    }
    100% {
        transform: rotate(360deg) translateX(0) translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Parallax Sections - Enhanced */
section {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

/* Section Parallax Effects */
section[data-parallax] {
    will-change: transform;
}

.hero {
    transform-style: preserve-3d;
}

.hero-content {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

/* Dynamic Island Navigation - Enhanced Premium */
.dynamic-island {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    min-width: 480px;
    max-width: 85%;
    height: 76px;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(0, 122, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    animation: islandEntrance 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.dynamic-island::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.08) 0%, 
        rgba(90, 200, 250, 0.05) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dynamic-island:hover::before {
    opacity: 1;
}

@keyframes islandEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scale(0.92);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
}

.dynamic-island:hover {
    background: rgba(10, 10, 12, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 40px rgba(0, 122, 255, 0.15);
    transform: translateX(-50%) translateY(-4px) scale(1.01);
}

.dynamic-island.scrolled {
    top: 16px;
    height: 68px;
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(45px) saturate(190%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.dynamic-island.collapsed {
    top: 12px;
    height: 60px;
    min-width: 200px;
    width: auto;
    max-width: 250px;
    transform: translateX(-50%) translateY(0);
}

.dynamic-island.collapsed .island-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    pointer-events: none;
    width: 0;
    overflow: hidden;
}

.dynamic-island.collapsed .island-content {
    justify-content: center;
    padding: 0 2rem;
    gap: 0;
}

.dynamic-island.collapsed .island-logo-img {
    height: 48px;
}

.dynamic-island.collapsed .mobile-menu-toggle {
    display: none;
}

.dynamic-island.collapsed:hover {
    transform: translateX(-50%) translateY(-2px) scale(1);
}

/* Optional: Expand on hover when collapsed (desktop only) */
@media (min-width: 769px) {
    .dynamic-island.collapsed:hover {
        min-width: 480px;
        max-width: 85%;
    }

    .dynamic-island.collapsed:hover .island-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
        width: auto;
        overflow: visible;
    }

    .dynamic-island.collapsed:hover .island-content {
        justify-content: space-between;
        padding: 0 2.75rem;
        gap: 3rem;
    }
}

.island-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.75rem;
    gap: 3rem;
    z-index: 1;
}

.island-logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.island-logo-container a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.island-logo-img {
    height: 54px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.dynamic-island:hover .island-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(90, 200, 250, 0.6));
    transform: scale(1.05);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.island-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: auto;
}

.island-menu a {
    text-decoration: none;
    color: rgba(245, 245, 247, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    padding: 0.625rem 0.75rem;
    border-radius: 12px;
}

.island-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.island-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007AFF 0%, #5AC8FA 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.island-menu a:hover {
    color: rgba(245, 245, 247, 1);
    transform: translateY(-1px);
}

.island-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.island-menu a:hover::after {
    width: calc(100% - 1.5rem);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.dynamic-island.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.dynamic-island.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.dynamic-island.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Enhanced Premium Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 8rem;
    z-index: 1;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(0, 122, 255, 0.08) 0%, 
        transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
    will-change: transform;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(0, 122, 255, 0.5) 0%, 
        rgba(0, 122, 255, 0.2) 40%,
        transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(90, 200, 250, 0.4) 0%, 
        rgba(90, 200, 250, 0.15) 40%,
        transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
}

.hero-gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(0, 122, 255, 0.35) 0%, 
        rgba(0, 122, 255, 0.15) 40%,
        transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(80px, -80px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(40px, -120px) scale(0.95) rotate(180deg);
    }
    75% {
        transform: translate(-60px, -80px) scale(1.1) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    max-width: 1000px;
    z-index: 2;
    padding: 0 1rem;
    animation: heroContentFade 1.2s ease-out;
}

@keyframes heroContentFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: rgba(0, 122, 255, 0.12);
    border: 1px solid rgba(0, 122, 255, 0.25);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 4px 16px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    background: rgba(0, 122, 255, 0.18);
    border-color: rgba(0, 122, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 122, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(90, 200, 250, 0.3);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.05em;
    position: relative;
}

.title-line {
    display: block;
    color: var(--text-primary);
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.title-line:first-child {
    animation: titleSlideIn 0.8s ease-out 0.2s both;
}

.title-line.gradient-text {
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        var(--primary-blue-light) 30%,
        #FFFFFF 50%,
        var(--primary-blue-light) 70%,
        var(--primary-blue) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite, titleSlideIn 0.8s ease-out 0.4s both;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0, 122, 255, 0.3));
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    animation: fadeInUp 1s ease-out 0.8s both;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-out 0.8s both;
}

.fade-in-delay-5 {
    animation: fadeIn 1s ease-out 1s both;
}

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

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

.btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        var(--primary-blue-dark) 100%);
    color: var(--white);
    box-shadow: 
        0 6px 24px rgba(0, 122, 255, 0.35),
        0 0 0 1px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-blue-light) 0%, 
        var(--primary-blue) 100%);
    transition: left 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 122, 255, 0.5),
        0 0 0 1px rgba(0, 122, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Hero Stats - Enhanced */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 122, 255, 0.5) 50%, 
        transparent 100%);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-item:hover .stat-number {
    color: var(--primary-blue);
    text-shadow: 0 0 20px rgba(0, 122, 255, 0.5);
}

.stat-number {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-blue-light);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, 
        var(--primary-blue-light) 0%, 
        var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 100%);
    position: relative;
}

.stat-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.5);
    box-shadow: 0 0 8px rgba(0, 122, 255, 0.5);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(90, 200, 250, 0.15) 100%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Section Styles */
.section-padding {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    background: transparent;
}

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Us Section - Redesigned */
.about {
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.about-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: iconPulse 3s ease-in-out infinite;
    position: relative;
}

.about-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, transparent 70%);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.about-icon svg {
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 700px;
}

.about-description {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-detail {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 650px;
}

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

.about-feature-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.about-feature-card:hover {
    transform: translateY(-8px);
    background: var(--dark-card-hover);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 122, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Fade-in Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

/* Vision Section - Redesigned */
.vision {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 122, 255, 0.03) 50%, transparent 100%);
}

.vision-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.vision-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: visionIconRotate 20s linear infinite;
    position: relative;
}

.vision-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, transparent 70%);
    animation: visionGlow 4s ease-in-out infinite;
}

@keyframes visionIconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes visionGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.vision-icon svg {
    position: relative;
    z-index: 1;
    animation: visionIconPulse 3s ease-in-out infinite;
}

@keyframes visionIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.vision-text-content {
    max-width: 700px;
}

.vision-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.vision-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vision-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.vision-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vision-highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(90, 200, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-highlight-item:hover::before {
    opacity: 1;
}

.vision-highlight-item:hover {
    transform: translateY(-8px);
    background: var(--dark-card-hover);
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 4px 16px rgba(0, 122, 255, 0.1);
}

.highlight-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: grayscale(0);
}

.vision-highlight-item:hover .highlight-icon {
    transform: scale(1.15) translateY(-4px);
    filter: grayscale(0) brightness(1.1);
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.vision-highlight-item:hover .highlight-title {
    color: var(--primary-blue-light);
}

.highlight-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: var(--transition);
}

.vision-highlight-item:hover .highlight-subtitle {
    color: var(--text-primary);
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-animation {
    position: relative;
    width: 300px;
    height: 200px;
}

.workflow-step {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    box-shadow: var(--shadow-md);
    animation: workflowPulse 2s infinite;
}

.step-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.step-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.step-3 {
    bottom: 0;
    right: 0;
    animation-delay: 1s;
}

.workflow-connector {
    position: absolute;
    top: 40px;
    left: 80px;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    transform: rotate(25deg);
}

@keyframes workflowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.mission-text {
    text-align: left;
}

.mission-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Values Section */
/* Core Values Section - Simple Bullet Lines */
.values {
    position: relative;
}

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

.values-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 400;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.value-line-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

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

.value-line-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-line-item:hover::before {
    width: 100%;
}

.value-line-item:hover {
    padding-left: 1rem;
}

.value-icon-container {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.value-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    stroke-width: 1.5;
}

.value-icon-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0.8);
}

.value-line-item:hover .value-icon-container::before {
    opacity: 1;
    transform: scale(1);
}

.value-line-item:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-blue-light);
}

.value-line-content {
    flex: 1;
}

.value-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.value-line-item:hover .value-title {
    color: var(--primary-blue-light);
}

.value-description {
    color: var(--text-secondary);
    font-size: clamp(0.9375rem, 1.25vw, 1rem);
    line-height: 1.6;
    transition: var(--transition);
}

.value-line-item:hover .value-description {
    color: var(--text-primary);
}

/* Services Section - Clean List Design */
.services {
    position: relative;
}

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

.services-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 400;
}

/* Services Timeline Container */
.services-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 120px;
}

/* Vertical Timeline Line */
.services-timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 122, 255, 0.3) 0%, 
        rgba(0, 122, 255, 0.2) 50%,
        rgba(0, 122, 255, 0.1) 100%);
}

/* Service Timeline Item */
.service-timeline-item {
    position: relative;
    display: flex;
    gap: 3rem;
    padding: 3rem 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-timeline-item:hover {
    transform: translateX(20px);
}

/* Service Timeline Marker */
.service-timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: -60px;
    width: 120px;
}

.service-timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 4px solid rgba(26, 26, 31, 1);
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-timeline-item:hover .service-timeline-dot {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.2),
                0 0 20px rgba(0, 122, 255, 0.5);
    transform: scale(1.2);
}

.service-timeline-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.service-timeline-item:hover .service-timeline-number {
    opacity: 1;
    transform: scale(1.2);
}

/* Service Timeline Content */
.service-timeline-content {
    display: flex;
    gap: 2rem;
    flex: 1;
    align-items: flex-start;
}

.service-timeline-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.08);
    border: 2px solid rgba(0, 122, 255, 0.15);
    border-radius: 20px;
    color: var(--primary-blue-light);
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-timeline-item:hover .service-timeline-icon-wrapper {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.3);
}

.service-timeline-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-timeline-title {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.4s ease;
    margin: 0;
}

.service-timeline-item:hover .service-timeline-title {
    color: var(--primary-blue-light);
}

.service-timeline-description {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.4s ease;
    margin: 0;
}

.service-timeline-item:hover .service-timeline-description {
    color: var(--text-primary);
}

/* Founder Section - Unique Premium Design */
.founder {
    position: relative;
    overflow: hidden;
}

.founder-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.founder-badge {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.founder-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, transparent 70%);
    animation: founderGlow 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes founderGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.founder-image-border {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)) padding-box,
                linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light)) border-box;
    background-clip: padding-box, border-box;
    z-index: 1;
    animation: founderBorderRotate 8s linear infinite;
    opacity: 0.3;
}

@keyframes founderBorderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.founder-portrait {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 8px 24px rgba(0, 122, 255, 0.2);
}

.founder-image-wrapper:hover .founder-portrait {
    transform: scale(1.05);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5),
                0 12px 32px rgba(0, 122, 255, 0.3);
}

.founder-info {
    text-align: left;
    position: relative;
    z-index: 1;
}

.founder-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.founder-name {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.founder-title {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.founder-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    margin-bottom: 2rem;
}

.founder-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.founder-highlight {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-blue-light);
    line-height: 1;
    letter-spacing: -0.02em;
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Why Choose Us Section */
/* Why Choose Us Section - Mission Style */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-animation {
    position: relative;
    width: 300px;
    height: 200px;
}

.why-step {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    box-shadow: var(--shadow-md);
    animation: workflowPulse 2s infinite;
}

.why-step.step-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.why-step.step-2 {
    top: 0;
    right: 0;
    animation-delay: 0.4s;
}

.why-step.step-3 {
    bottom: 0;
    left: 0;
    animation-delay: 0.8s;
}

.why-step.step-4 {
    bottom: 0;
    right: 0;
    animation-delay: 1.2s;
}

.why-connector {
    position: absolute;
    top: 30px;
    left: 60px;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    transform: rotate(0deg);
}

.why-connector::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue-light) 0%, transparent 100%);
    transform: rotate(0deg);
}

.why-text {
    text-align: left;
}

.why-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Projects Section - Clean List Design (No Cards) */
.projects {
    position: relative;
}

.projects-header {
    text-align: center;
    margin-bottom: 5rem;
}

.projects-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 400;
}

/* Timeline Container */
.projects-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 120px;
}

/* Vertical Timeline Line */
.projects-timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 122, 255, 0.3) 0%, 
        rgba(0, 122, 255, 0.2) 50%,
        rgba(0, 122, 255, 0.1) 100%);
}

/* Timeline Item */
.project-timeline-item {
    position: relative;
    display: flex;
    gap: 3rem;
    padding: 3rem 0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-timeline-item:hover {
    transform: translateX(20px);
}

/* Timeline Marker */
.project-timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: -60px;
    width: 120px;
}

.project-timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 4px solid rgba(26, 26, 31, 1);
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.project-timeline-item:hover .project-timeline-dot {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.2),
                0 0 20px rgba(0, 122, 255, 0.5);
    transform: scale(1.2);
}

.project-timeline-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.project-timeline-item:hover .project-timeline-number {
    opacity: 1;
    transform: scale(1.2);
}

/* Timeline Content */
.project-timeline-content {
    display: flex;
    gap: 2rem;
    flex: 1;
    align-items: flex-start;
}

.project-timeline-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.08);
    border: 2px solid rgba(0, 122, 255, 0.15);
    border-radius: 20px;
    color: var(--primary-blue-light);
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-timeline-item:hover .project-timeline-icon-wrapper {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.3);
}

.project-timeline-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-timeline-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.project-timeline-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.project-timeline-item:hover .project-timeline-category {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.35);
    color: var(--primary-blue-light);
}

.project-timeline-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'SF Mono', 'Monaco', monospace;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.project-timeline-item:hover .project-timeline-year {
    opacity: 1;
    color: var(--primary-blue-light);
}

.project-timeline-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.4s ease;
    margin: 0;
}

.project-timeline-item:hover .project-timeline-title {
    color: var(--primary-blue-light);
}

.project-timeline-description {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.4s ease;
    margin: 0;
}

.project-timeline-item:hover .project-timeline-description {
    color: var(--text-primary);
}

.project-timeline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue-light);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.project-timeline-item:hover .project-timeline-link {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-blue);
    gap: 1rem;
}

.project-timeline-link svg {
    transition: transform 0.4s ease;
}

.project-timeline-item:hover .project-timeline-link svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-list-item {
        grid-template-columns: auto 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .project-list-action {
        position: absolute;
        bottom: 2rem;
        right: 0;
        width: 48px;
        height: 48px;
    }

    .project-list-number {
        font-size: 3rem;
        min-width: 60px;
    }

    .project-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .project-list-icon {
        width: 40px;
        height: 40px;
    }
}

/* Remove old card styles - keeping only list styles above */
/* Hero Card - Wide Top Card */
.project-creative-hero {
    grid-column: 1 / -1;
    position: relative;
    min-height: 400px;
    padding: 3rem;
    background: rgba(26, 26, 31, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-creative-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(90, 200, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.project-creative-hero:hover .project-creative-hero-bg {
    opacity: 1;
}

.project-creative-hero:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7),
                0 0 80px rgba(0, 122, 255, 0.25);
}

.project-creative-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-creative-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.project-creative-number-badge {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.2;
    transition: all 0.5s ease;
}

.project-creative-hero:hover .project-creative-number-badge {
    opacity: 0.35;
    transform: scale(1.05);
}

.project-creative-year-tag {
    padding: 0.5rem 1.25rem;
    background: rgba(0, 122, 255, 0.15);
    border: 1px solid rgba(0, 122, 255, 0.25);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    font-family: 'SF Mono', 'Monaco', monospace;
    transition: all 0.4s ease;
}

.project-creative-hero:hover .project-creative-year-tag {
    background: rgba(0, 122, 255, 0.25);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.05);
}

.project-creative-hero-main {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.project-creative-icon-hero {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.2);
    border-radius: 24px;
    color: var(--primary-blue-light);
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-creative-hero:hover .project-creative-icon-hero {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 16px 48px rgba(0, 122, 255, 0.4);
}

.project-creative-hero-text {
    flex: 1;
}

.project-creative-category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.12);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.project-creative-hero:hover .project-creative-category-tag {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.35);
}

.project-creative-hero-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.project-creative-hero:hover .project-creative-hero-title {
    color: var(--primary-blue-light);
}

.project-creative-hero-description {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    transition: color 0.4s ease;
}

.project-creative-hero:hover .project-creative-hero-description {
    color: var(--text-primary);
}

.project-creative-hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-creative-link-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    transition: all 0.4s ease;
}

.project-creative-hero:hover .project-creative-link-text {
    color: var(--primary-blue);
}

.project-creative-link-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-blue-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-creative-hero:hover .project-creative-link-arrow {
    background: rgba(0, 122, 255, 0.2);
    transform: translateX(4px) scale(1.1);
    color: var(--primary-blue);
}

.project-creative-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.project-creative-hero:hover .project-creative-diagonal {
    opacity: 1;
}

/* Compact Card - Bottom Left */
.project-creative-compact {
    position: relative;
    padding: 2.5rem;
    background: rgba(26, 26, 31, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
}

.project-creative-compact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.06) 0%, rgba(90, 200, 250, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-creative-compact:hover .project-creative-compact-bg {
    opacity: 1;
}

.project-creative-compact:hover {
    transform: translateY(-8px) translateX(8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(0, 122, 255, 0.2);
}

.project-creative-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.project-creative-compact-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.25;
    transition: all 0.4s ease;
}

.project-creative-compact:hover .project-creative-compact-number {
    opacity: 0.4;
    transform: scale(1.1);
}

.project-creative-compact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 16px;
    color: var(--primary-blue-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-creative-compact:hover .project-creative-compact-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(0, 122, 255, 0.3);
}

.project-creative-compact-content {
    position: relative;
    z-index: 1;
}

.project-creative-compact-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-family: 'SF Mono', 'Monaco', monospace;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.project-creative-compact:hover .project-creative-compact-year {
    opacity: 1;
    color: var(--primary-blue-light);
}

.project-creative-compact-title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.project-creative-compact:hover .project-creative-compact-title {
    color: var(--primary-blue-light);
}

.project-creative-compact-category {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.project-creative-compact-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.4s ease;
}

.project-creative-compact:hover .project-creative-compact-description {
    color: var(--text-primary);
}

.project-creative-compact-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.12) 0%, transparent 70%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-creative-compact:hover .project-creative-compact-corner {
    opacity: 1;
}

/* Tall Card - Bottom Right */
.project-creative-tall {
    position: relative;
    padding: 3rem;
    background: rgba(26, 26, 31, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.project-creative-tall-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 122, 255, 0.08) 0%, rgba(90, 200, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-creative-tall:hover .project-creative-tall-bg {
    opacity: 1;
}

.project-creative-tall:hover {
    transform: translateY(-8px) translateX(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(0, 122, 255, 0.2);
}

.project-creative-tall-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-creative-tall-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.2;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.project-creative-tall:hover .project-creative-tall-number {
    opacity: 0.35;
    transform: scale(1.05);
}

.project-creative-tall-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    color: var(--primary-blue-light);
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-creative-tall:hover .project-creative-tall-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 16px 40px rgba(0, 122, 255, 0.35);
}

.project-creative-tall-text {
    flex-grow: 1;
}

.project-creative-tall-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-family: 'SF Mono', 'Monaco', monospace;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.project-creative-tall:hover .project-creative-tall-year {
    opacity: 1;
    color: var(--primary-blue-light);
}

.project-creative-tall-title {
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.project-creative-tall:hover .project-creative-tall-title {
    color: var(--primary-blue-light);
}

.project-creative-tall-category {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.project-creative-tall-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.project-creative-tall:hover .project-creative-tall-description {
    color: var(--text-primary);
}

.project-creative-tall-action {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue-light);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    margin-top: auto;
}

.project-creative-tall-action svg {
    transition: transform 0.4s ease;
}

.project-creative-tall:hover .project-creative-tall-action {
    color: var(--primary-blue);
    gap: 1rem;
}

.project-creative-tall:hover .project-creative-tall-action svg {
    transform: translateX(4px);
}

.project-creative-tall-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-creative-tall:hover .project-creative-tall-accent {
    height: 100%;
}

/* Featured Project - Large Modern Card */
.project-modern-featured {
    position: relative;
    min-height: 550px;
    padding: 3.5rem;
    background: rgba(26, 26, 31, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-modern-featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    transform: translate(30%, -30%);
}

.project-modern-featured:hover::before {
    opacity: 1;
    transform: translate(20%, -20%) scale(1.2);
}

.project-modern-featured:hover {
    background: rgba(26, 26, 31, 0.6);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(0, 122, 255, 0.2);
}

.project-modern-number {
    position: absolute;
    top: 3.5rem;
    left: 3.5rem;
    font-size: 6rem;
    font-weight: 800;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.15;
    transition: var(--transition);
    z-index: 0;
}

.project-modern-featured:hover .project-modern-number {
    opacity: 0.25;
    transform: scale(1.05);
}

.project-modern-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.project-modern-icon-large {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modern-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2) 0%, rgba(90, 200, 250, 0.15) 100%);
    border-radius: 24px;
    border: 2px solid rgba(0, 122, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-modern-featured:hover .project-modern-icon-bg {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.3) 0%, rgba(90, 200, 250, 0.25) 100%);
    border-color: rgba(0, 122, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.4);
}

.project-modern-icon-large svg {
    position: relative;
    z-index: 1;
    color: var(--primary-blue-light);
    transition: var(--transition);
}

.project-modern-featured:hover .project-modern-icon-large svg {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.project-modern-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    font-family: 'SF Mono', 'Monaco', monospace;
    opacity: 0.6;
    transition: var(--transition);
}

.project-modern-featured:hover .project-modern-year {
    opacity: 1;
    transform: scale(1.1);
}

.project-modern-content {
    position: relative;
    z-index: 1;
}

.project-modern-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.project-modern-featured:hover .project-modern-category {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
}

.project-modern-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.project-modern-featured:hover .project-modern-title {
    color: var(--primary-blue-light);
}

.project-modern-description {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.project-modern-featured:hover .project-modern-description {
    color: var(--text-primary);
}

.project-modern-action {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue-light);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-modern-action svg {
    transition: transform 0.4s ease;
}

.project-modern-featured:hover .project-modern-action {
    color: var(--primary-blue);
    gap: 1rem;
}

.project-modern-featured:hover .project-modern-action svg {
    transform: translateX(6px);
}

.project-modern-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-modern-featured:hover .project-modern-accent {
    transform: scaleX(1);
}

/* Modern Stack Cards */
.projects-modern-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-modern-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(26, 26, 31, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.project-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-modern-card:hover {
    background: rgba(26, 26, 31, 0.6);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateX(12px) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(0, 122, 255, 0.15);
}

.project-modern-card-number {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    transition: var(--transition);
    line-height: 1;
}

.project-modern-card:hover .project-modern-card-number {
    opacity: 0.4;
    transform: scale(1.1);
}

.project-modern-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 16px;
    color: var(--primary-blue-light);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.project-modern-card:hover .project-modern-card-icon {
    background: rgba(0, 122, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
}

.project-modern-card-content {
    position: relative;
    z-index: 1;
}

.project-modern-card-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-family: 'SF Mono', 'Monaco', monospace;
    opacity: 0.6;
    transition: var(--transition);
}

.project-modern-card:hover .project-modern-card-year {
    opacity: 1;
    color: var(--primary-blue-light);
}

.project-modern-card-title {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: var(--transition);
    line-height: 1.3;
}

.project-modern-card:hover .project-modern-card-title {
    color: var(--primary-blue-light);
}

.project-modern-card-category {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.project-modern-card-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: var(--transition);
}

.project-modern-card:hover .project-modern-card-description {
    color: var(--text-primary);
}

.project-modern-card-arrow {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-blue-light);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.project-modern-card:hover .project-modern-card-arrow {
    opacity: 1;
    transform: scale(1);
    background: rgba(0, 122, 255, 0.2);
    color: var(--primary-blue);
}

/* Powered Apps Section - Unique Showcase Design */
.powered-apps {
    position: relative;
}

.powered-apps-header {
    text-align: center;
    margin-bottom: 5rem;
}

.powered-apps-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 400;
}

/* Unique Showcase Layout */
.powered-apps-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured App - Large Card */
.powered-app-featured {
    position: relative;
    min-height: 500px;
    cursor: pointer;
}

.powered-app-featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.08) 0%, 
        rgba(90, 200, 250, 0.05) 50%,
        transparent 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.powered-app-featured:hover .powered-app-featured-bg {
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.15) 0%, 
        rgba(90, 200, 250, 0.1) 50%,
        transparent 100%);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(0, 122, 255, 0.2);
}

.powered-app-featured-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.powered-app-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.powered-app-featured-icon-wrapper {
    position: relative;
}

.powered-app-featured-icon-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.15);
    border-radius: 24px;
    border: 2px solid rgba(0, 122, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

.powered-app-featured:hover .powered-app-featured-icon-container {
    background: rgba(0, 122, 255, 0.25);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.3);
}

.powered-app-featured-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    filter: blur(20px);
}

.powered-app-featured:hover .powered-app-featured-glow {
    opacity: 1;
    width: 150px;
    height: 150px;
}

.powered-app-featured-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.powered-app-featured:hover .powered-app-featured-logo {
    transform: scale(1.1);
}

.powered-app-featured-badge-wrapper {
    position: relative;
    z-index: 1;
}

.powered-app-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #22C55E;
    transition: var(--transition);
}

.powered-app-featured:hover .powered-app-featured-badge {
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.5);
    transform: scale(1.05);
}

.powered-app-featured-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.powered-app-featured-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'SF Mono', 'Monaco', monospace;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    transition: var(--transition);
}

.powered-app-featured:hover .powered-app-featured-number {
    opacity: 0.5;
    transform: scale(1.05);
}

.powered-app-featured-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.powered-app-featured:hover .powered-app-featured-title {
    color: var(--primary-blue-light);
}

.powered-app-featured-category {
    font-size: 0.875rem;
    color: var(--primary-blue-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.powered-app-featured-description {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 90%;
    transition: var(--transition);
}

.powered-app-featured:hover .powered-app-featured-description {
    color: var(--text-primary);
}

/* Upcoming Apps - Vertical List */
.powered-apps-upcoming {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.powered-app-upcoming-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 31, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.powered-app-upcoming-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.powered-app-upcoming-item:hover::before {
    height: 100%;
}

.powered-app-upcoming-item:hover {
    background: rgba(26, 26, 31, 0.6);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.powered-app-upcoming-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Monaco', monospace;
    color: var(--primary-blue-light);
    opacity: 0.4;
    transition: var(--transition);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    align-self: center;
    position: relative;
    z-index: 1;
}

.powered-app-upcoming-item:hover .powered-app-upcoming-number {
    opacity: 1;
    color: var(--primary-blue);
    transform: scale(1.1);
}

.powered-app-upcoming-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 16px;
    color: var(--primary-blue-light);
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.powered-app-upcoming-item:hover .powered-app-upcoming-icon {
    background: rgba(0, 122, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-blue);
}

.powered-app-upcoming-content {
    position: relative;
    z-index: 1;
}

.powered-app-upcoming-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.powered-app-upcoming-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: var(--transition);
}

.powered-app-upcoming-item:hover .powered-app-upcoming-title {
    color: var(--primary-blue-light);
}

.powered-app-upcoming-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.powered-app-upcoming-badge.coming-soon-badge {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.powered-app-upcoming-category {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.powered-app-upcoming-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.powered-app-upcoming-item:hover .powered-app-upcoming-description {
    color: var(--text-primary);
}

.powered-app-upcoming-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.powered-app-upcoming-connector {
    position: absolute;
    left: 2rem;
    bottom: -2rem;
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, rgba(0, 122, 255, 0.3) 0%, transparent 100%);
    opacity: 0.3;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue-light);
}

.status-indicator.status-active {
    background: #22C55E;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.status-indicator.status-coming-soon {
    background: #F59E0B;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.status-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Partners Section - Clean Minimal Design */
.partners {
    position: relative;
}

.partners-header {
    text-align: center;
    margin-bottom: 5rem;
}

.partners-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 400;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4rem 3rem;
    margin-top: 4rem;
    align-items: center;
    justify-items: center;
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100px;
}

.partner-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.partner-logo-wrapper:hover::after {
    width: 60%;
}

.partner-logo-container {
    position: relative;
    z-index: 1;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper:hover .partner-logo-container {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

.partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo-wrapper:hover .partner-logo {
    filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.3));
}

/* Footer */
/* Footer - Apple/iCloud Style */
.footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 3rem;
    margin-top: 8rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.02em;
    margin: 0;
}

.footer-tagline {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-links li {
    margin: 0;
}

.footer-nav-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.2s ease;
}

.footer-nav-links li a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-nav-links li a:hover::after {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 20%, 
        rgba(255, 255, 255, 0.08) 80%, 
        transparent 100%);
    margin: 2rem 0;
}

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

.footer-copyright {
    margin: 0;
}

.footer-copyright p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dynamic-island {
        width: calc(100% - 32px);
        min-width: auto;
        max-width: calc(100% - 32px);
        height: auto;
        min-height: 70px;
        top: 16px;
        padding: 0.875rem 0;
        border-radius: 35px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .island-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1.5rem;
    }

    .island-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(40px);
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0 0 35px 35px;
        padding: 0;
        margin-top: 1rem;
    }

    .dynamic-island.menu-open .island-menu {
        max-height: 500px;
        padding: 1rem 0;
    }

    .island-menu li {
        width: 100%;
        text-align: center;
    }

    .island-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 0.875rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .island-menu li:last-child a {
        border-bottom: none;
    }

    .island-logo-img {
        height: 45px;
        max-width: 400px;
    }

    .hero {
        padding: 7rem 1rem 4rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }

    .hero-tagline {
        font-size: clamp(1.125rem, 3vw, 1.75rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .orb-1, .orb-2, .orb-3 {
        filter: blur(60px);
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-icon-wrapper {
        justify-content: center;
    }

    .about-icon {
        width: 100px;
        height: 100px;
    }

    .about-icon svg {
        width: 60px;
        height: 60px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .vision-icon-wrapper {
        justify-content: center;
    }

    .vision-icon {
        width: 140px;
        height: 140px;
    }

    .vision-icon svg {
        width: 80px;
        height: 80px;
    }

    .vision-text-content {
        max-width: 100%;
    }

    .vision-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-highlight-item {
        padding: 2rem 1.5rem;
    }

    .highlight-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .mission-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-text,
    .why-text {
        text-align: center;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .founder-highlight {
        justify-content: center;
        gap: 2rem;
    }

    .founder-image-glow {
        width: 300px;
        height: 300px;
    }

    .founder-image-border {
        width: 280px;
        height: 280px;
    }

    .founder-portrait {
        width: 260px;
        height: 260px;
    }

    .workflow-animation,
    .why-animation {
        width: 200px;
        height: 150px;
    }

    .workflow-step,
    .why-step {
        width: 50px;
        height: 50px;
    }

    .why-step.step-1 {
        top: 0;
        left: 0;
    }

    .why-step.step-2 {
        top: 0;
        right: 0;
    }

    .why-step.step-3 {
        bottom: 0;
        left: 0;
    }

    .why-step.step-4 {
        bottom: 0;
        right: 0;
    }

    .why-connector {
        width: 120px;
        top: 25px;
        left: 50px;
    }

    .why-connector::after {
        width: 120px;
        top: 60px;
    }

    .values-list {
        max-width: 100%;
    }

    .value-line-item {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .value-line-item:hover {
        padding-left: 0.75rem;
    }

    .value-icon-container {
        width: 48px;
        height: 48px;
    }

    .value-icon {
        width: 20px;
        height: 20px;
    }

    .services-timeline-container {
        padding-left: 80px;
    }

    .services-timeline-line {
        left: 40px;
    }

    .service-timeline-marker {
        margin-left: -40px;
        width: 80px;
    }

    .service-timeline-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-timeline-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .service-timeline-item:hover {
        transform: translateX(10px);
    }

    .service-number {
        display: none;
    }

    .service-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .service-icon-container {
        width: 56px;
        height: 56px;
    }

    .service-icon {
        width: 24px;
        height: 24px;
    }

    .service-content {
        padding-left: 0.5rem;
    }

    .service-item:hover .service-title {
        transform: translateX(4px);
    }

    .service-line {
        left: 28px;
    }

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

    .operations-timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-number {
        left: -1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

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

    .timeline-features {
        grid-template-columns: 1fr;
    }

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

    .projects-timeline-container {
        padding-left: 80px;
    }

    .projects-timeline-line {
        left: 40px;
    }

    .project-timeline-marker {
        margin-left: -40px;
        width: 80px;
    }

    .project-timeline-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .project-timeline-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .project-timeline-item:hover {
        transform: translateX(10px);
    }

    .powered-apps-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .powered-app-featured {
        min-height: auto;
    }

    .powered-app-featured-content {
        padding: 2rem;
    }

    .powered-app-featured-icon-container {
        width: 80px;
        height: 80px;
    }

    .powered-app-featured-logo {
        width: 60px;
        height: 60px;
    }

    .powered-app-featured-number {
        font-size: 3rem;
    }

    .powered-app-upcoming-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .powered-app-upcoming-item:hover {
        transform: translateX(4px);
    }

    .powered-app-upcoming-number {
        font-size: 1.5rem;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .powered-app-upcoming-icon {
        width: 56px;
        height: 56px;
    }

    .powered-app-upcoming-connector {
        display: none;
    }

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

    .partner-logo-wrapper {
        height: 80px;
        padding: 1rem;
    }

    .partner-logo {
        max-height: 40px;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-visual-container {
        max-width: 300px;
    }

    .contact-visual-icon {
        width: 60px;
        height: 60px;
    }

    .contact-visual-name {
        font-size: 1.25rem;
    }

    .contact-visual-role {
        font-size: 0.875rem;
    }

    .contact-detail-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-detail-item:hover {
        transform: translateX(4px);
    }

    .contact-detail-number {
        font-size: 1.25rem;
    }

    .contact-detail-arrow {
        width: 36px;
        height: 36px;
    }

    .section-padding {
        padding: 4rem 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-legal {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .founder-portrait {
        width: 250px;
        height: 250px;
    }
}

/* ============================================
   NEW PAGES STYLES
   ============================================ */

/* Page Hero (Shared) */
.page-hero {
    padding-top: 8rem;
    text-align: center;
}

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

.page-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Case Studies Page */
.case-studies {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    transition: var(--transition);
}

.case-study-item:hover {
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.case-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-blue-light);
}

.case-category {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.case-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.case-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.case-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.case-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.case-content ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.case-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue-light);
}

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

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 122, 255, 0.05);
    border-radius: var(--border-radius);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-blue-light);
}

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

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(0, 122, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue-light);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

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

/* Blogs Page */
.blogs {
    max-width: 1200px;
    margin: 0 auto;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2) 0%, rgba(90, 200, 250, 0.2) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-blue-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-blue);
}

.newsletter-section {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--primary-blue);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-blue-dark);
}


/* Our Team Page */
.team-structure,
.team-operations,
.collaboration-model,
.team-handling {
    max-width: 1200px;
    margin: 0 auto;
}

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

.team-structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.structure-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.structure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.05) 0%, 
        rgba(90, 200, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.structure-card:hover::before {
    opacity: 1;
}

.structure-card:hover {
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 4px 16px rgba(0, 122, 255, 0.15);
}

.structure-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-blue-light);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.structure-card:hover .structure-icon {
    background: rgba(0, 122, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-blue);
}

.structure-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.structure-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

/* Operations Timeline */
.operations-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.operations-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(0, 122, 255, 0.3) 0%, 
        rgba(0, 122, 255, 0.1) 50%,
        transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.timeline-number {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.3);
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    font-family: 'SF Mono', 'Monaco', monospace;
    z-index: 2;
}

.timeline-item:hover .timeline-number {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.4);
}

.timeline-content {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateX(8px);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.timeline-features li {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue-light);
    font-weight: 600;
}

/* Collaboration Grid */
.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.collaboration-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.collaboration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 122, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.collaboration-card:hover::before {
    left: 100%;
}

.collaboration-card:hover {
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.collab-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 16px;
    color: var(--primary-blue-light);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.collaboration-card:hover .collab-icon {
    background: rgba(0, 122, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-blue);
}

.collab-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.collab-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Handling Grid */
.handling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.handling-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.handling-item:hover {
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.handling-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-blue-light);
    transition: all 0.4s ease;
}

.handling-item:hover .handling-icon-wrapper {
    background: rgba(0, 122, 255, 0.2);
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-blue);
}

.handling-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.handling-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Contact Info Section - Unique Split Design */
.contact-info-section {
    position: relative;
}

.contact-content-wrapper {
    margin-top: 4rem;
}

/* Unique Split Layout */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Visual Element */
.contact-visual-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.2;
    animation: contactPulse 4s ease-in-out infinite;
}

.contact-visual-circle.circle-1 {
    width: 100%;
    height: 100%;
    border-color: var(--primary-blue);
    animation-delay: 0s;
}

.contact-visual-circle.circle-2 {
    width: 75%;
    height: 75%;
    border-color: var(--primary-blue-light);
    animation-delay: 1s;
}

.contact-visual-circle.circle-3 {
    width: 50%;
    height: 50%;
    border-color: var(--primary-blue);
    animation-delay: 2s;
}

@keyframes contactPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

.contact-visual-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 122, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: var(--transition);
}

.contact-visual-container:hover .contact-visual-center {
    background: rgba(0, 122, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.2);
    transform: scale(1.05);
}

.contact-visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.contact-visual-container:hover .contact-visual-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.4);
}

.contact-visual-text {
    position: relative;
    z-index: 1;
}

.contact-visual-name {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.contact-visual-role {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: var(--primary-blue-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Right Side - Contact Details */
.contact-details-side {
    position: relative;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 26, 31, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.contact-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-detail-item:hover::before {
    height: 100%;
}

.contact-detail-item:hover {
    background: rgba(26, 26, 31, 0.6);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-detail-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    font-family: 'SF Mono', 'Monaco', monospace;
    opacity: 0.5;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-detail-item:hover .contact-detail-number {
    opacity: 1;
    color: var(--primary-blue);
    transform: scale(1.1);
}

.contact-detail-content {
    position: relative;
    z-index: 1;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-detail-item:hover .contact-detail-label {
    color: var(--primary-blue-light);
}

.contact-detail-value {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    line-height: 1.4;
}

.contact-detail-item:hover .contact-detail-value {
    color: var(--text-primary);
}

.contact-detail-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-blue-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(-10px);
}

.contact-detail-item:hover .contact-detail-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(0, 122, 255, 0.2);
    color: var(--primary-blue);
}

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

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.contact-master-card {
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.card-front {
    background: linear-gradient(135deg, 
        rgba(15, 15, 20, 0.95) 0%, 
        rgba(20, 20, 30, 0.95) 50%, 
        rgba(10, 10, 18, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.586 / 1;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-front::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(0, 122, 255, 0.2) 0%, 
        rgba(90, 200, 250, 0.15) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: cardGlow 8s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

.card-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%),
        radial-gradient(ellipse at top left, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card-front:hover::before {
    opacity: 0.4;
}

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

.card-front:hover {
    transform: translateY(-12px) rotateY(3deg) scale(1.02);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 122, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 60px rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.3);
}

/* Card Chip */
.card-chip-container {
    margin-bottom: 2rem;
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, 
        #FFD700 0%, 
        #FFC700 30%,
        #FFA500 70%,
        #FF8C00 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(255, 215, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%);
    border-radius: 8px;
}

.card-front:hover .card-chip {
    transform: scale(1.05);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 6px 16px rgba(255, 215, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.3);
}

.chip-line {
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}

.chip-line:nth-child(1) {
    width: 8px;
    height: 2px;
    top: 12px;
    left: 8px;
}

.chip-line:nth-child(2) {
    width: 8px;
    height: 2px;
    top: 16px;
    left: 8px;
}

.chip-line:nth-child(3) {
    width: 8px;
    height: 2px;
    top: 20px;
    left: 8px;
}

.chip-line:nth-child(4) {
    width: 8px;
    height: 2px;
    top: 24px;
    left: 8px;
}

.chip-line:nth-child(5) {
    width: 2px;
    height: 8px;
    top: 10px;
    right: 8px;
}

.chip-line:nth-child(6) {
    width: 2px;
    height: 8px;
    top: 20px;
    right: 8px;
}

/* Card Number */
.card-number-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 122, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.card-front:hover .card-number-container {
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 122, 255, 0.2);
}

.card-number-group {
    position: relative;
    z-index: 1;
}

/* Card Info Row */
.card-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
}

.card-holder-section,
.card-contact-section {
    flex: 1;
}

.card-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.card-front:hover .card-label {
    color: rgba(255, 255, 255, 0.8);
}

.card-holder-name {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.card-front:hover .card-holder-name {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 6px rgba(0, 122, 255, 0.2);
}

.card-contact-value {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.card-front:hover .card-contact-value {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 6px rgba(0, 122, 255, 0.2);
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-location,
.card-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-front:hover .card-location,
.card-front:hover .card-email {
    color: rgba(255, 255, 255, 0.9);
}

.card-email svg,
.card-location svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.card-front:hover .card-email svg,
.card-front:hover .card-location svg {
    opacity: 1;
    transform: scale(1.1);
}

.card-email a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-email a:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 8px rgba(0, 122, 255, 0.3);
}

/* Mastercard Logo */
.mastercard-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.3s ease;
}

.card-front:hover .mastercard-logo {
    transform: scale(1.1) translateY(-2px);
}

.mastercard-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.mastercard-circle.circle-1 {
    background: linear-gradient(135deg, #EB001B 0%, #C5001A 100%);
    left: 0;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(235, 0, 27, 0.4);
}

.mastercard-circle.circle-2 {
    background: linear-gradient(135deg, #F79E1B 0%, #E68900 100%);
    right: 0;
    z-index: 1;
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(247, 158, 27, 0.4);
}

.card-front:hover .mastercard-circle.circle-1 {
    box-shadow: 0 4px 12px rgba(235, 0, 27, 0.5);
    transform: translateX(-2px);
}

.card-front:hover .mastercard-circle.circle-2 {
    box-shadow: 0 4px 12px rgba(247, 158, 27, 0.5);
    transform: translateX(2px);
}

/* Card Name and Phone Sections */
.card-name-section,
.card-phone-section {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-name-label,
.card-phone-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card-front:hover .card-name-label,
.card-front:hover .card-phone-label {
    color: rgba(255, 255, 255, 0.8);
}

.card-name-value,
.card-phone-value {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 0.05em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.card-phone-value {
    color: var(--primary-blue-light);
}

.card-front:hover .card-name-value {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 6px rgba(0, 122, 255, 0.3);
}

.card-front:hover .card-phone-value {
    color: var(--primary-blue);
    text-shadow: 0 0 12px rgba(0, 122, 255, 0.5);
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.contact-method-card:hover {
    background: var(--dark-card-hover);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 16px;
    color: var(--primary-blue-light);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-method-card:hover .contact-method-icon {
    background: rgba(0, 122, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-blue);
}

.contact-method-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-method-card:hover .contact-method-title {
    color: var(--primary-blue-light);
}

.contact-method-value {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-method-card:hover .contact-method-value {
    color: var(--text-primary);
}

.contact-method-action {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method-card:hover .contact-method-action {
    color: var(--primary-blue);
    transform: translateX(4px);
}

.contact-wrapper {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b30;
}

.error-message {
    color: #ff3b30;
    font-size: 0.875rem;
    min-height: 1.25rem;
}

.form-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    display: block;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--dark-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

/* Responsive for New Pages */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .api-info-cards {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

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

    .case-study-item {
        padding: 2rem;
    }

    .contact-master-card {
        max-width: 90%;
    }

    .card-front {
        padding: 2rem 1.5rem;
        aspect-ratio: 1.586 / 1;
    }

    .card-number-container {
        gap: 0.75rem;
        font-size: 0.875rem;
        flex-wrap: wrap;
    }

    .card-info-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .mastercard-logo {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 35px;
    }

    .mastercard-circle {
        width: 25px;
        height: 25px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }
}

