* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0a4db8;
    --secondary-blue: #1e88e5;
    --accent-blue: #42a5f5;
    --light-blue: #90caf9;
    --dark-blue: #0d3a8a;
    --gradient-start: #0a4db8;
    --gradient-end: #1e88e5;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-light: #ffffff;
    --bg-light: #f8f9ff;
    --bg-white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(10, 77, 184, 0.1);
    --shadow-medium: 0 8px 30px rgba(10, 77, 184, 0.15);
    --shadow-strong: 0 12px 40px rgba(10, 77, 184, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 0.7rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.navbar.scrolled .logo-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 1)) drop-shadow(0 0 35px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
}

.navbar.scrolled .logo {
}

.navbar.scrolled .logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .logo-img:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7));
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-menu a::after {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.nav-menu a:hover::after {
    width: 100%;
}

.section {
    min-height: 100vh;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#home {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
    border-right: 3px solid rgba(255, 255, 255, 0.8);
    padding-right: 5px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    animation: slideInLeft 1s ease-out 0.2s backwards;
    border-right: 2px solid var(--light-blue);
    padding-right: 5px;
    display: inline-block;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out;
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.element-1 {
    width: 200px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: float 8s ease-in-out infinite 1s;
}

.element-3 {
    width: 180px;
    height: 100px;
    bottom: 15%;
    left: 30%;
    animation: float 7s ease-in-out infinite 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid rgba(255, 255, 255, 0.6);
    border-bottom: 3px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

.background-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 77, 184, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    right: -80px;
    animation: float 10s ease-in-out infinite 2s;
}

.decoration-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.12) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morph 15s ease-in-out infinite;
}

.decoration-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 77, 184, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    top: 15%;
    right: -150px;
    animation: float 12s ease-in-out infinite;
}

.decoration-5 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(30, 136, 229, 0.10) 0%, transparent 100%);
    border-radius: 20px;
    bottom: 10%;
    left: -100px;
    animation: rotate 20s linear infinite;
}

.decoration-6 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.14) 0%, transparent 65%);
    border-radius: 50%;
    top: 20%;
    left: -120px;
    animation: float 9s ease-in-out infinite 1s;
}

.decoration-7 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(10, 77, 184, 0.12) 0%, transparent 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: 15%;
    right: -80px;
    animation: morph 18s ease-in-out infinite 3s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(10, 77, 184, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 20px 60px rgba(10, 77, 184, 0.25);
    border-color: rgba(66, 165, 245, 0.5);
}

.service-card:nth-child(1) {
    transition-delay: 0s;
}

.service-card:nth-child(2) {
    transition-delay: 0.15s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 20px 60px rgba(10, 77, 184, 0.25);
    border-color: rgba(66, 165, 245, 0.5);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(180deg);
    box-shadow: 0 15px 35px rgba(10, 77, 184, 0.3);
}

.service-icon svg {
    width: 45px;
    height: 45px;
    stroke: white;
    transition: transform 0.6s ease;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
}

.product-item.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.product-right {
    transform: translateX(50px) scale(0.95);
}

.product-right.visible {
    transform: translateX(0) scale(1);
}

.product-content {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-content {
    transform: translateY(-10px);
}

.product-visual {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.product-item:hover .product-visual {
    transform: rotateY(-5deg) rotateX(5deg);
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.product-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-strong);
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.phone-mockup:hover {
    transform: scale(1.05) rotateY(10deg) rotateX(-5deg);
    box-shadow: 0 25px 80px rgba(10, 77, 184, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    border-radius: 32px;
    animation: screenGlow 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.phone-header {
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.phone-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.phone-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
}

.phone-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.info-list {
    padding: 8px;
    animation: scrollUp 20s linear infinite;
}

.info-list:hover {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.info-item {
    background: white;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    font-weight: 600;
}

.tag-sale {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.tag-help {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    color: white;
}

.tag-found {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
}

.tag-activity {
    background: linear-gradient(135deg, #E91E63, #F06292);
    color: white;
}

.info-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.3;
}

.info-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-price {
    font-size: 13px;
    font-weight: 700;
    color: #f44336;
}

.info-time {
    font-size: 10px;
    color: #999;
}

.phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    background: white;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.nav-item:hover {
    transform: scale(1.1);
}

.nav-item.active .nav-icon-svg {
    color: var(--primary-blue);
}

.nav-icon-svg {
    width: 22px;
    height: 22px;
    color: #999;
}

.nav-item.active .nav-icon-svg {
    color: var(--primary-blue);
}

.location-icon {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.9);
    vertical-align: middle;
    margin-right: 4px;
}

.api-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.api-node {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    position: absolute;
    box-shadow: var(--shadow-medium);
}

.node-1 {
    top: 20%;
    left: 20%;
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: nodeFloat 4s ease-in-out infinite 1s;
}

.node-3 {
    bottom: 20%;
    right: 20%;
    animation: nodeFloat 4s ease-in-out infinite 2s;
}

.api-connection {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed var(--accent-blue);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.api-data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
    animation: flowDot 3s linear infinite;
}

@keyframes flowDot {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.publish-visual {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.publish-card {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    opacity: 0.8;
    animation: cardFloat 3s ease-in-out infinite;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 0.5s;
}

.card-3 {
    animation-delay: 1s;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-circle {
    position: relative;
    width: 400px;
    height: 400px;
}

.circle-inner {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    box-shadow: var(--shadow-strong);
    animation: pulse 3s ease-in-out infinite;
}

.circle-outer {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--accent-blue);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.circle-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite reverse;
}

.circle-dots::before,
.circle-dots::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.circle-dots::before {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.circle-dots::after {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: bounce 2s infinite;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(10, 77, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 77, 184, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--text-light);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: var(--light-blue);
    text-decoration: none;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 500px;
    margin-left: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(10, 77, 184, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(10, 77, 184, 0.1);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group.active label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    background: white;
    padding: 0 0.3rem;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-blue);
}

@media (max-width: 968px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        margin-left: 0;
        max-width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes screenGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(10, 77, 184, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(10, 77, 184, 0.5);
    }
}

#case-studies {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.decoration-8 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.decoration-9 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(10, 77, 184, 0.08) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 10%;
    left: -80px;
    animation: morph 20s ease-in-out infinite;
}

.case-studies-wrapper {
    overflow: hidden;
    margin: 0 -2rem;
    padding: 2rem;
}

.case-studies-container {
    display: flex;
    gap: 2rem;
    animation: scrollHorizontal 30s linear infinite;
    width: fit-content;
}

.case-studies-wrapper:hover .case-studies-container {
    animation-play-state: paused;
}

@keyframes scrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.case-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(10, 77, 184, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 20px 60px rgba(10, 77, 184, 0.25);
    border-color: rgba(66, 165, 245, 0.5);
}

.case-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-icon {
    font-size: 4rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.case-card:hover .case-icon {
    transform: scale(1.2) rotate(5deg);
}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.case-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.case-tag {
    background: linear-gradient(135deg, rgba(10, 77, 184, 0.1), rgba(30, 136, 229, 0.1));
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(10, 77, 184, 0.2);
}

#team {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.decoration-10 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(10, 77, 184, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 15%;
    left: -120px;
    animation: float 9s ease-in-out infinite 1s;
}

.decoration-11 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.06) 0%, transparent 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: 20%;
    right: -100px;
    animation: morph 20s ease-in-out infinite 3s;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(10, 77, 184, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 20px 60px rgba(10, 77, 184, 0.2);
    border-color: rgba(66, 165, 245, 0.5);
}

.team-card:nth-child(1) { transition-delay: 0s; }
.team-card:nth-child(2) { transition-delay: 0.1s; }
.team-card:nth-child(3) { transition-delay: 0.2s; }
.team-card:nth-child(4) { transition-delay: 0.3s; }

.team-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(10, 77, 184, 0.2);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(10, 77, 184, 0.35);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-intro {
    flex: 1;
    min-width: 0;
}

.team-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.team-name-en {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 0.3rem;
}

.team-position {
    font-size: 0.95rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.team-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, rgba(10, 77, 184, 0.08), rgba(66, 165, 245, 0.12));
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(10, 77, 184, 0.15);
}

.team-highlights {
    margin-bottom: 1.2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.highlight-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.team-responsibility {
    background: linear-gradient(135deg, rgba(10, 77, 184, 0.04), rgba(66, 165, 245, 0.08));
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--primary-blue);
}

.responsibility-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.team-responsibility p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.social-link {
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(10, 77, 184, 0.08), rgba(30, 136, 229, 0.08));
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(10, 77, 184, 0.15);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 77, 184, 0.3);
}

#about {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.timeline {
    margin-top: 4rem;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 2rem);
    transform: translateX(30px);
}

.timeline-right.visible {
    transform: translateX(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-blue);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: var(--secondary-blue);
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 6px rgba(30, 136, 229, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(10, 77, 184, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(10, 77, 184, 0.15);
    border-color: rgba(66, 165, 245, 0.5);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

#news {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.decoration-12 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 77, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.decoration-13 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.08) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 10%;
    left: -80px;
    animation: morph 20s ease-in-out infinite;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(10, 77, 184, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(10, 77, 184, 0.2);
    border-color: rgba(66, 165, 245, 0.5);
}

.news-card:nth-child(1) { transition-delay: 0s; }
.news-card:nth-child(2) { transition-delay: 0.1s; }
.news-card:nth-child(3) { transition-delay: 0.2s; }
.news-card:nth-child(4) { transition-delay: 0.3s; }

.news-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-icon {
    font-size: 3rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.news-card:hover .news-icon {
    transform: scale(1.2) rotate(5deg);
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-content {
    padding: 1.5rem 2rem;
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: var(--primary-blue);
}

.news-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.news-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.news-link:hover::after {
    width: 100%;
}

.news-link:hover {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .product-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .tech-circle {
        width: 300px;
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        min-height: 280px;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        min-height: auto;
        padding: 2.5rem 2rem;
    }

    .background-decoration {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-tags {
        justify-content: center;
    }
}