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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Background Effect - Enhanced Dynamic Animation */
.bg-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2832 50%, #265F7A 100%);
}

.bg-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(38, 95, 122, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 116, 147, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 137, 167, 0.04) 0%, transparent 50%);
    animation: bgShift 30s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateX(20px) translateY(-10px) rotate(1deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-10px) translateY(20px) rotate(-1deg);
        opacity: 0.4;
    }
    75% {
        transform: translateX(10px) translateY(-15px) rotate(0.5deg);
        opacity: 0.7;
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: floatEnhanced 25s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(38, 95, 122, 0.4) 0%, rgba(26, 74, 97, 0.3) 100%);
    top: 20%;
    left: 10%;
    animation: 
        orbFloat1 18s infinite ease-in-out,
        orbPulse1 6s infinite ease-in-out,
        orbMorph1 12s infinite ease-in-out,
        orbGlow 8s infinite ease-in-out;
    animation-delay: 0s, 1s, 2s, 0.5s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(56, 116, 147, 0.3) 0%, rgba(74, 137, 167, 0.25) 100%);
    top: 60%;
    right: 10%;
    animation: 
        orbFloat2 15s infinite ease-in-out,
        orbRotate 25s infinite linear,
        orbExpand 10s infinite ease-in-out,
        orbColorShiftCalm 20s infinite ease-in-out;
    animation-delay: -7s, 0s, -3s, -10s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(92, 158, 187, 0.35) 0%, rgba(65, 127, 152, 0.3) 100%);
    bottom: 20%;
    left: 50%;
    animation: 
        orbFloat3 20s infinite ease-in-out,
        orbWobble 8s infinite ease-in-out,
        orbBreathe 14s infinite ease-in-out,
        orbDrift 30s infinite ease-in-out;
    animation-delay: -14s, -5s, -8s, -15s;
}

.orb-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, rgba(83, 148, 177, 0.3) 0%, rgba(47, 106, 132, 0.25) 100%);
    top: 10%;
    right: 30%;
    animation: 
        orbFloat4 16s infinite ease-in-out,
        orbSpiral 24s infinite linear,
        orbFlicker 5s infinite ease-in-out,
        orbZigzag 28s infinite ease-in-out;
    animation-delay: -8s, -12s, -2s, -20s;
}

.orb-5 {
    width: 320px;
    height: 320px;
    background: linear-gradient(45deg, rgba(101, 169, 197, 0.25) 0%, rgba(110, 179, 207, 0.2) 100%);
    bottom: 10%;
    right: 15%;
    animation: 
        orbFloat5 22s infinite ease-in-out,
        orbElastic 18s infinite ease-in-out,
        orbColorCycleCalm 16s infinite ease-in-out,
        orbWave 26s infinite ease-in-out;
    animation-delay: -18s, -6s, -11s, -25s;
}

/* Floating particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(92, 158, 187, 0.05);
    pointer-events: none;
    animation: particleFloat 20s infinite linear;
}

.particle:nth-child(odd) {
    animation-direction: reverse;
}

/* Enhanced Orb Animations - Much More Dynamic */

/* Orb 1 Animations - Large Movement */
@keyframes orbFloat1 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    12% { transform: translateY(-200px) translateX(300px) rotate(15deg) scale(1.3); }
    25% { transform: translateY(150px) translateX(-250px) rotate(-20deg) scale(0.8); }
    37% { transform: translateY(-300px) translateX(400px) rotate(35deg) scale(1.5); }
    50% { transform: translateY(250px) translateX(-350px) rotate(-30deg) scale(0.6); }
    62% { transform: translateY(-150px) translateX(500px) rotate(45deg) scale(1.4); }
    75% { transform: translateY(180px) translateX(-200px) rotate(-25deg) scale(0.9); }
    87% { transform: translateY(-100px) translateX(200px) rotate(20deg) scale(1.2); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

@keyframes orbPulse1 {
    0%, 100% { filter: blur(40px) brightness(1) hue-rotate(0deg); opacity: 0.5; }
    25% { filter: blur(20px) brightness(1.2) hue-rotate(15deg); opacity: 0.6; }
    50% { filter: blur(60px) brightness(0.8) hue-rotate(30deg); opacity: 0.3; }
    75% { filter: blur(30px) brightness(1.1) hue-rotate(45deg); opacity: 0.55; }
}

@keyframes orbMorph1 {
    0%, 100% { border-radius: 50%; }
    25% { border-radius: 60% 40% 60% 40%; }
    50% { border-radius: 40% 60% 40% 60%; }
    75% { border-radius: 55% 45% 55% 45%; }
}

@keyframes orbGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(38, 95, 122, 0.15); }
    50% { box-shadow: 0 0 40px rgba(38, 95, 122, 0.3), 0 0 60px rgba(56, 116, 147, 0.2); }
}

/* Orb 2 Animations - Large Movement */
@keyframes orbFloat2 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    10% { transform: translateY(-250px) translateX(-400px) rotate(-25deg) scale(1.4); }
    20% { transform: translateY(200px) translateX(450px) rotate(30deg) scale(0.7); }
    35% { transform: translateY(-180px) translateX(-300px) rotate(-40deg) scale(1.6); }
    50% { transform: translateY(320px) translateX(350px) rotate(50deg) scale(0.5); }
    65% { transform: translateY(-280px) translateX(-450px) rotate(-35deg) scale(1.5); }
    80% { transform: translateY(150px) translateX(400px) rotate(60deg) scale(0.8); }
    95% { transform: translateY(-100px) translateX(-200px) rotate(-15deg) scale(1.1); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

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

@keyframes orbExpand {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.4); }
    70% { transform: scale(0.6); }
}

@keyframes orbColorShiftCalm {
    0% { background: linear-gradient(45deg, rgba(56, 116, 147, 0.3) 0%, rgba(74, 137, 167, 0.25) 100%); }
    25% { background: linear-gradient(45deg, rgba(38, 95, 122, 0.35) 0%, rgba(26, 74, 97, 0.3) 100%); }
    50% { background: linear-gradient(45deg, rgba(92, 158, 187, 0.28) 0%, rgba(65, 127, 152, 0.25) 100%); }
    75% { background: linear-gradient(45deg, rgba(101, 169, 197, 0.32) 0%, rgba(110, 179, 207, 0.27) 100%); }
    100% { background: linear-gradient(45deg, rgba(56, 116, 147, 0.3) 0%, rgba(74, 137, 167, 0.25) 100%); }
}

/* Orb 3 Animations - Large Movement */
@keyframes orbFloat3 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    14% { transform: translateY(-220px) translateX(380px) rotate(25deg) scale(1.3); }
    28% { transform: translateY(280px) translateX(-320px) rotate(-30deg) scale(0.7); }
    42% { transform: translateY(-350px) translateX(500px) rotate(45deg) scale(1.6); }
    56% { transform: translateY(200px) translateX(-400px) rotate(-50deg) scale(0.6); }
    70% { transform: translateY(-180px) translateX(300px) rotate(35deg) scale(1.4); }
    84% { transform: translateY(250px) translateX(-250px) rotate(-40deg) scale(0.8); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

@keyframes orbWobble {
    0%, 100% { transform: skewX(0deg) skewY(0deg); }
    20% { transform: skewX(8deg) skewY(4deg); }
    40% { transform: skewX(-6deg) skewY(-8deg); }
    60% { transform: skewX(10deg) skewY(6deg); }
    80% { transform: skewX(-4deg) skewY(-3deg); }
}

@keyframes orbBreathe {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    25% { transform: scale(1.3) rotate(90deg); opacity: 0.6; }
    50% { transform: scale(0.7) rotate(180deg); opacity: 1; }
    75% { transform: scale(1.2) rotate(270deg); opacity: 0.7; }
}

@keyframes orbDrift {
    0% { transform: translate(0px, 0px); }
    20% { transform: translate(400px, -300px); }
    40% { transform: translate(-350px, 400px); }
    60% { transform: translate(450px, 200px); }
    80% { transform: translate(-300px, -250px); }
    100% { transform: translate(0px, 0px); }
}

/* Orb 4 Animations - Large Movement */
@keyframes orbFloat4 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    16% { transform: translateY(-300px) translateX(-350px) rotate(-35deg) scale(1.5); }
    32% { transform: translateY(250px) translateX(420px) rotate(40deg) scale(0.6); }
    48% { transform: translateY(-200px) translateX(-480px) rotate(-55deg) scale(1.7); }
    64% { transform: translateY(350px) translateX(300px) rotate(30deg) scale(0.5); }
    80% { transform: translateY(-150px) translateX(-200px) rotate(-25deg) scale(1.3); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

@keyframes orbSpiral {
    0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    25% { transform: rotate(90deg) translateX(300px) rotate(-90deg); }
    50% { transform: rotate(180deg) translateX(400px) rotate(-180deg); }
    75% { transform: rotate(270deg) translateX(300px) rotate(-270deg); }
    100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

@keyframes orbFlicker {
    0%, 100% { opacity: 0.4; filter: blur(40px); }
    20% { opacity: 0.2; filter: blur(60px); }
    40% { opacity: 0.6; filter: blur(20px); }
    60% { opacity: 0.3; filter: blur(50px); }
    80% { opacity: 0.5; filter: blur(30px); }
}

@keyframes orbZigzag {
    0% { transform: translateX(0px); }
    10% { transform: translateX(150px); }
    20% { transform: translateX(-120px); }
    30% { transform: translateX(200px); }
    40% { transform: translateX(-180px); }
    50% { transform: translateX(250px); }
    60% { transform: translateX(-200px); }
    70% { transform: translateX(300px); }
    80% { transform: translateX(-100px); }
    90% { transform: translateX(100px); }
    100% { transform: translateX(0px); }
}

/* Orb 5 Animations - Large Movement */
@keyframes orbFloat5 {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
    12% { transform: translateY(-400px) translateX(450px) rotate(40deg) scale(1.6); }
    24% { transform: translateY(300px) translateX(-500px) rotate(-45deg) scale(0.5); }
    36% { transform: translateY(-250px) translateX(350px) rotate(60deg) scale(1.8); }
    48% { transform: translateY(450px) translateX(-400px) rotate(-35deg) scale(0.4); }
    60% { transform: translateY(-320px) translateX(480px) rotate(50deg) scale(1.5); }
    72% { transform: translateY(200px) translateX(-300px) rotate(-60deg) scale(0.7); }
    84% { transform: translateY(-150px) translateX(250px) rotate(25deg) scale(1.2); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); }
}

@keyframes orbElastic {
    0%, 100% { transform: scaleX(1) scaleY(1); }
    20% { transform: scaleX(1.4) scaleY(0.6); }
    40% { transform: scaleX(0.8) scaleY(1.3); }
    60% { transform: scaleX(1.2) scaleY(0.8); }
    80% { transform: scaleX(0.9) scaleY(1.1); }
}

@keyframes orbColorCycleCalm {
    0% { background: linear-gradient(45deg, rgba(101, 169, 197, 0.25) 0%, rgba(110, 179, 207, 0.2) 100%); }
    20% { background: linear-gradient(45deg, rgba(92, 158, 187, 0.22) 0%, rgba(65, 127, 152, 0.18) 100%); }
    40% { background: linear-gradient(45deg, rgba(38, 95, 122, 0.28) 0%, rgba(26, 74, 97, 0.23) 100%); }
    60% { background: linear-gradient(45deg, rgba(56, 116, 147, 0.26) 0%, rgba(74, 137, 167, 0.21) 100%); }
    80% { background: linear-gradient(45deg, rgba(83, 148, 177, 0.24) 0%, rgba(47, 106, 132, 0.19) 100%); }
    100% { background: linear-gradient(45deg, rgba(101, 169, 197, 0.25) 0%, rgba(110, 179, 207, 0.2) 100%); }
}

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

/* Random Breathing Animation */
@keyframes orbBreatheRandom {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.4; 
        filter: blur(40px);
    }
    50% { 
        transform: scale(1.2) rotate(180deg); 
        opacity: 0.6; 
        filter: blur(25px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Cursor Splash Effect with Trails */
.cursor-splash {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(38, 95, 122, 0.8) 0%, rgba(56, 116, 147, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    opacity: 0;
    box-shadow: 
        0 0 10px rgba(38, 95, 122, 0.5),
        0 0 20px rgba(38, 95, 122, 0.3),
        0 0 30px rgba(38, 95, 122, 0.1);
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(38, 95, 122, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.1s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(38, 95, 122, 0.2);
    box-shadow: 0 2px 20px rgba(38, 95, 122, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container {
    position: relative;
    width: 40px;
    height: 40px;
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #265F7A, #4A89A7);
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 2px 10px rgba(38, 95, 122, 0.2);
}

.nav-brand h1 {
    color: #265F7A;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #265F7A, #4A89A7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #265F7A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4A89A7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #265F7A, #4A89A7);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #265F7A;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #4A89A7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #265F7A, #4A89A7);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(38, 95, 122, 0.4), 
                0 0 40px rgba(74, 137, 167, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 20px rgba(38, 95, 122, 0.4), 
                    0 0 40px rgba(74, 137, 167, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(38, 95, 122, 0.6), 
                    0 0 60px rgba(74, 137, 167, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

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

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(45deg, #4A89A7, #265F7A);
    box-shadow: 0 0 40px rgba(38, 95, 122, 0.8), 
                0 0 80px rgba(74, 137, 167, 0.6),
                0 15px 35px rgba(38, 95, 122, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: btnGlowHover 0.5s ease-in-out infinite alternate;
}

@keyframes btnGlowHover {
    0% {
        box-shadow: 0 0 40px rgba(38, 95, 122, 0.8), 
                    0 0 80px rgba(74, 137, 167, 0.6),
                    0 15px 35px rgba(38, 95, 122, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 50px rgba(38, 95, 122, 1.0), 
                    0 0 100px rgba(74, 137, 167, 0.8),
                    0 20px 40px rgba(38, 95, 122, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.btn-primary:hover::before {
    left: 100%;
}

/* キラキラスターエフェクト */
.btn-primary:hover::after {
    animation: sparkleHover 1s ease-in-out infinite;
}

@keyframes sparkleHover {
    0% { opacity: 0.2; transform: scale(1) rotate(0deg); }
    25% { opacity: 0.8; transform: scale(1.1) rotate(90deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
    75% { opacity: 0.8; transform: scale(1.1) rotate(270deg); }
    100% { opacity: 0.2; transform: scale(1) rotate(360deg); }
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4A89A7;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, #4A89A7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Business Section */
.business {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

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

.business-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.business-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(38, 95, 122, 0.3);
}

.card-icon {
    color: #4A89A7;
    margin-bottom: 1.5rem;
}

.business-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.business-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
}

.card-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A89A7;
    font-weight: bold;
}

/* Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #265F7A, #4A89A7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
}

.member-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #4A89A7;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(38, 95, 122, 0.2);
    color: #4A89A7;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Achievements Section */
.achievements {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

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

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(38, 95, 122, 0.3);
}

.achievement-icon {
    color: #4A89A7;
    margin-bottom: 1.5rem;
}

.achievement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(38, 95, 122, 0.2);
    color: #4A89A7;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Company Section */
.company {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

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

.info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.info-item h4 {
    color: #4A89A7;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.company-mission {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.company-mission h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-mission p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(248, 250, 252, 0.95);
    border-top: 1px solid rgba(38, 95, 122, 0.2);
    backdrop-filter: blur(15px);
}

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

.footer-brand h3 {
    color: #265F7A;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(38, 95, 122, 0.8);
}

.footer-contact h4 {
    color: #4A89A7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(38, 95, 122, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(38, 95, 122, 0.2);
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(38, 95, 122, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .business-card,
    .member-card {
        padding: 1.5rem;
    }
    
    .orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .orb-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .business-card,
    .member-card,
    .info-item {
        padding: 1rem;
    }
    
    .avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
