/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1A2B48;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

/* Luxury gradient backgrounds */
.luxury-gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.luxury-gradient-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.luxury-gradient-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.luxury-gradient-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.luxury-gradient-5 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.luxury-gradient-6 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Gold accent colors */
.gold-accent {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-border {
    border: 2px solid transparent;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-clip: padding-box;
}

/* Luxury shadows */
.luxury-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.luxury-shadow-lg {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Glass morphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Universal centering */
* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

p, span, div {
    text-align: center;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        text-align: center;
    }
    
    * {
        text-align: center !important;
    }
    
    .nav-container,
    .hero-content,
    .value-content,
    .about-content,
    .features-grid,
    .numbers-grid,
    .team-grid,
    .contact-content,
    .footer-content {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(255, 215, 0, 0.1) 100%);
    z-index: -1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1A2B48;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3FA9F5;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #4ecdc4);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ffd700, #4ecdc4, #ff6b6b);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    animation: buttonGlow 0.3s ease;
}

@keyframes buttonGlow {
    0% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6); }
    100% { box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4); }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700, #4ecdc4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 2;
}

@keyframes titleGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.hero-cta {
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: linear-gradient(45deg, #ffd700, #4ecdc4, #45b7d1, #ff6b6b);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5);
    animation: ctaPulse 0.6s ease;
}

@keyframes ctaPulse {
    0% { box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 25px 50px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 25px 50px rgba(255, 215, 0, 0.5); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 70%;
    left: 70%;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 10%;
    right: 30%;
    animation-delay: 5s;
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #ff6b6b, #ffd700, #4ecdc4);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Proposition */
.value-proposition {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.value-text .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

.value-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.value-points {
    display: grid;
    gap: 2rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-point:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.point-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2B48;
}

.dashboard-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dashboard-status.live {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1A2B48;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.metric-change.positive {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

.dashboard-chart {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
}

.chart-header {
    font-weight: 600;
    color: #1A2B48;
    margin-bottom: 1rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100px;
    gap: 4px;
}

.bar {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border-radius: 4px 4px 0 0;
    min-width: 20px;
    transition: all 0.3s ease;
    animation: barGrow 2s ease-out;
}

.bar:hover {
    background: linear-gradient(45deg, #ffd700, #4ecdc4);
    transform: scaleY(1.1);
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--bar-height); }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cloud-dashboard {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(26, 43, 72, 0.1);
    border: 1px solid rgba(63, 169, 245, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F4F6F8;
}

.dashboard-title {
    font-weight: 600;
    color: #1A2B48;
    font-size: 1.2rem;
}

.dashboard-status {
    background: #62C370;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dashboard-card {
    background: #F4F6F8;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    background: #E8F4FD;
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-weight: 600;
    color: #1A2B48;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1A2B48;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #1A2B48;
    opacity: 0.8;
    line-height: 1.7;
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: twinkle 10s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(26, 43, 72, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700, #4ecdc4);
}

.story-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.story-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.story-meta h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A2B48;
    margin-bottom: 0.5rem;
}

.story-location {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-content {
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1A2B48;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.story-content p::before {
    content: '"';
    font-size: 4rem;
    color: #ffd700;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

.story-author {
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    color: #6c757d;
    font-size: 0.9rem;
}

.story-author strong {
    color: #1A2B48;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E8F4FD 0%, #FFFFFF 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1A2B48;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 43, 72, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(63, 169, 245, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 43, 72, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1A2B48;
}

.feature-card p {
    color: #1A2B48;
    opacity: 0.7;
    line-height: 1.6;
}

/* Technology Stack Section */
.technology-stack {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.technology-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuits" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffd700" opacity="0.1"/><path d="M0,25 L50,25 M25,0 L25,50" stroke="%23ffd700" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circuits)"/></svg>');
    animation: circuitFlow 15s linear infinite;
}

@keyframes circuitFlow {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.tech-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.tech-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.tech-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 2px;
}

.tech-items {
    display: grid;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.tech-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.tech-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.showcase-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-button {
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #4ecdc4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.code-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.window-header {
    background: #2d2d2d;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn.red { background: #ff5f56; }
.btn.yellow { background: #ffbd2e; }
.btn.green { background: #27ca3f; }

.window-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.window-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.line-number {
    color: #666;
    width: 30px;
    text-align: right;
    margin-right: 1rem;
    font-size: 0.8rem;
}

.code {
    color: #ffffff;
    flex: 1;
}

.code.indent {
    margin-left: 2rem;
}

/* Numbers Section */
.numbers {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1A2B48 0%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%233FA9F5" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2362C370" opacity="0.1"/><circle cx="40" cy="80" r="2.5" fill="%233FA9F5" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%2362C370" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.numbers .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.number-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(63, 169, 245, 0.2);
    transition: all 0.3s ease;
}

.number-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.number-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3FA9F5;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #F4F6F8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 43, 72, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 43, 72, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3FA9F5, #62C370);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A2B48;
}

.team-card p {
    color: #1A2B48;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 43, 72, 0.9), rgba(63, 169, 245, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231A2B48" width="1200" height="800"/><polygon points="0,400 300,200 600,400 900,150 1200,350 1200,800 0,800" fill="%233FA9F5" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3FA9F5;
    background: rgba(255, 255, 255, 0.15);
}

.submit-button {
    background: #3FA9F5;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #62C370;
    transform: translateY(-2px);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #3FA9F5;
}

/* Footer */
.footer {
    background: #1A2B48;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3FA9F5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3FA9F5;
}

.footer-tech {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-tech p {
    margin: 0;
    text-align: center;
}

.footer-copyright {
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .nav-menu {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .value-content,
    .about-content,
    .contact-content,
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .features-grid,
    .numbers-grid,
    .team-grid,
    .stories-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .value-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tech-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-nav,
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 20px;
        text-align: center;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .section-title,
    .section-subtitle {
        text-align: center;
    }
    
    .tech-category,
    .story-card,
    .feature-card,
    .number-card,
    .team-card {
        text-align: center;
    }
    
    .showcase-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .feature-card,
    .number-card,
    .team-card,
    .story-card,
    .tech-category {
        padding: 1.5rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 1.5rem;
        text-align: center;
    }
    
    .form-group {
        text-align: center;
    }
    
    .form-group input,
    .form-group textarea {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-menu a {
        text-align: center;
    }
    
    .cta-button,
    .hero-cta {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .dashboard-mockup,
    .code-window {
        margin: 0 auto;
    }
    
    .value-point,
    .tech-item {
        text-align: center;
        align-items: center;
    }
    
    .point-icon,
    .tech-icon,
    .story-icon {
        margin: 0 auto;
    }
    
    .point-content,
    .tech-name,
    .tech-description {
        text-align: center;
    }
    
    .story-header {
        text-align: center;
        align-items: center;
    }
    
    .story-meta {
        text-align: center;
    }
    
    .story-content {
        text-align: center;
    }
    
    .story-author {
        text-align: center;
    }
    
    .team-photo {
        margin: 0 auto 1.5rem;
    }
    
    .metric-card {
        text-align: center;
    }
    
    .chart-header {
        text-align: center;
    }
    
    .showcase-content {
        text-align: center;
    }
    
    .showcase-visual {
        text-align: center;
    }
    
    .code-window {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .window-content {
        text-align: left;
        font-size: 0.8rem;
    }
    
    .floating-icon {
        display: none;
    }
}
