:root {
    --primary: #0066cc;
    --secondary: #ff1493;
    --accent: #0099ff;
    --dark-bg: #f8f9fa;
    --darker-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: rgba(0, 102, 204, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Background Animation */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.12;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 50%;
    right: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: -100px;
    left: 30%;
    animation: float 30s ease-in-out infinite;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(20px) translateX(-10px);
    }
    66% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Content */
.content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 32px;
    animation: spin 6s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 450px;
    line-height: 1.8;
}

.email-form {
    display: flex;
    gap: 8px;
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4px;
    backdrop-filter: blur(10px);
    max-width: 450px;
    transition: all 0.3s ease;
}

.email-form:focus-within {
    border-color: var(--primary);
    background: rgba(0, 102, 204, 0.15);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.1);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.25);
}

.arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .arrow {
    transform: translateX(4px);
}

.form-message {
    font-size: 14px;
    color: var(--text-secondary);
    height: 20px;
}

.form-message.success {
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-float {
    position: absolute;
    width: 130px;
    height: 130px;
    background: rgba(0, 102, 204, 0.08);
    border: 2px solid;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-1 {
    border-color: var(--primary);
    color: var(--primary);
    top: 0;
    left: 10%;
    animation: float-card 4s ease-in-out infinite;
}

.card-2 {
    border-color: var(--secondary);
    color: var(--secondary);
    top: 40%;
    right: 5%;
    animation: float-card 5s ease-in-out infinite;
}

.card-3 {
    border-color: var(--accent);
    color: var(--accent);
    bottom: 10%;
    left: 20%;
    animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.card-float:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px currentColor;
}

.card-emoji {
    font-size: 32px;
}

.card-float p {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/* Values Section */
.values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 120px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.value-card {
    background: rgba(0, 102, 204, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(0, 102, 204, 0.12);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* Services Section */
.services {
    margin-bottom: 120px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(0, 102, 204, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out both;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.service-item:hover {
    background: rgba(0, 102, 204, 0.12);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.12);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-item > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: var(--text-secondary);
    font-size: 13px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.service-item:hover .features-list li {
    color: var(--primary);
    padding-left: 8px;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 40px;
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 120px;
    backdrop-filter: blur(10px);
}

.stat {
    animation: fadeIn 0.8s ease-out both;
}

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }
.stat:nth-child(4) { animation-delay: 0.4s; }

.stat h3 {
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Why Section */
.why-section {
    margin-bottom: 120px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    padding: 30px;
    background: rgba(0, 102, 204, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out both;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }
.why-item:nth-child(5) { animation-delay: 0.5s; }
.why-item:nth-child(6) { animation-delay: 0.6s; }

.why-item:hover {
    background: rgba(0, 102, 204, 0.12);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.why-emoji {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.why-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

/* Team Section */
.team {
    margin-bottom: 120px;
    text-align: center;
}

.team-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    padding: 40px 30px;
    background: rgba(0, 102, 204, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out both;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }

.team-member:hover {
    background: rgba(0, 102, 204, 0.12);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.member-avatar {
    font-size: 60px;
    margin-bottom: 16px;
    display: block;
}

.team-member h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-member .role {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member .bio {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
    animation: slideUp 0.8s ease-out 0.5s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-4px);
}

.footer p {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 20px;
    }

    .header {
        margin-bottom: 50px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .email-form {
        flex-direction: column;
        max-width: 100%;
    }

    .hero-visual {
        height: 300px;
    }

    .card-float {
        width: 110px;
        height: 110px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .email-input {
        font-size: 12px;
        padding: 10px 12px;
    }

    .btn-submit {
        padding: 10px 16px;
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .value-card,
    .service-item,
    .team-member {
        padding: 20px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat h3 {
        font-size: 28px;
    }
}
