* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0e27;
    color: #fff;
    overflow-x: hidden;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(58, 175, 169, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(58, 175, 169, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(58, 175, 169, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
    animation: meshMove 15s ease-in-out infinite;
}

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

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

.geometric-shape {
    position: fixed;
    opacity: 0.05;
    z-index: -1;
    border: 2px solid #3AAFA9;
    transition: transform 0.1s ease-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    transform: rotate(45deg);
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    border-color: #17252A;
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    border-color: #3AAFA9;
}

header {
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(58, 175, 169, 0.15);
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background: rgba(10, 14, 39, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(58, 175, 169, 0.1) inset;
    padding: 15px 0;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, #3AAFA9, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #DEF2F1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3AAFA9;
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: #3AAFA9;
}

.contact-btn {
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    color: #fff;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(58, 175, 169, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(58, 175, 169, 0.5);
}

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

.menu-button {
    display: none;
    background: transparent;
    border: 2px solid #3AAFA9;
    color: #3AAFA9;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
}

.menu-button:hover {
    background: rgba(58, 175, 169, 0.1);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(58, 175, 169, 0.2);
    padding: 80px 30px 30px;
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #3AAFA9;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg);
    color: #fff;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    color: #DEF2F1;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(58, 175, 169, 0.1);
}

.mobile-nav-links a:hover {
    color: #3AAFA9;
    padding-left: 10px;
}

.hero {
    padding: 180px 40px 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

@keyframes typeIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3AAFA9, #6C63FF);
    z-index: 1001;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(58, 175, 169, 0.5);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(58, 175, 169, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(58, 175, 169, 0.6);
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 25px;
    padding-bottom: 5px;
    background: linear-gradient(135deg, #fff, #3AAFA9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 80px rgba(58, 175, 169, 0.3);
}

.hero-content h2 {
    font-size: 15px;
    color: #3AAFA9;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
}

.hero-content p {
    color: #B8C5D6;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(58, 175, 169, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(58, 175, 169, 0.6);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #3AAFA9;
    padding: 16px 36px;
    text-decoration: none;
    border: 2px solid #3AAFA9;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(58, 175, 169, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: rgba(58, 175, 169, 0.1);
    transform: translateY(-3px);
}

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

.hero-visual {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.code-window {
    background: rgba(23, 37, 42, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(58, 175, 169, 0.3);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(58, 175, 169, 0.1) inset, 0 8px 16px rgba(58, 175, 169, 0.1);
    position: relative;
}

.code-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: rgba(58, 175, 169, 0.1);
    border-bottom: 1px solid rgba(58, 175, 169, 0.3);
}

.window-dots {
    position: absolute;
    top: 12px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot:nth-child(1) {
    background: #ff5f56;
}

.dot:nth-child(2) {
    background: #ffbd2e;
}

.dot:nth-child(3) {
    background: #27c93f;
}

.code-content {
    margin-top: 30px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.code-line {
    color: #DEF2F1;
    margin: 8px 0;
    opacity: 0;
}

.code-line.typed {
    animation: typeIn 0.5s ease-out forwards;
}

.code-keyword {
    color: #6C63FF;
    font-weight: 600;
}

.code-function {
    color: #3AAFA9;
}

.code-string {
    color: #50fa7b;
}

.section-tag {
    font-size: 13px;
    color: #3AAFA9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-align: center;
    display: block;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff, #3AAFA9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.about {
    background: rgba(23, 37, 42, 0.4);
    backdrop-filter: blur(10px);
    padding: 120px 40px;
    border-top: 1px solid rgba(58, 175, 169, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.about.visible {
    opacity: 1;
    transform: translateY(0);
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    color: #B8C5D6;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(58, 175, 169, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(58, 175, 169, 0.25);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(58, 175, 169, 0.05) inset;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #3AAFA9;
    box-shadow: 0 20px 60px rgba(58, 175, 169, 0.3), 0 0 0 1px rgba(58, 175, 169, 0.2) inset, 0 0 40px rgba(58, 175, 169, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #3AAFA9, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-number.counting {
    display: inline-block;
}

.stat-label {
    font-size: 14px;
    color: #B8C5D6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services {
    padding: 120px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.services.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(23, 37, 42, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(58, 175, 169, 0.25);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(58, 175, 169, 0.05) inset;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 175, 169, 0.1), rgba(108, 99, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 175, 169, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
    top: -30%;
    left: -30%;
}

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

.service-card:hover {
    transform: translateY(-15px);
    border-color: #3AAFA9;
    box-shadow: 0 25px 70px rgba(58, 175, 169, 0.3), 0 0 0 1px rgba(58, 175, 169, 0.3) inset, 0 0 60px rgba(58, 175, 169, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(58, 175, 169, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.service-card h4 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #B8C5D6;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.portfolio {
    background: rgba(23, 37, 42, 0.4);
    backdrop-filter: blur(10px);
    padding: 120px 40px;
    border-top: 1px solid rgba(58, 175, 169, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.portfolio.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-study {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(58, 175, 169, 0.25);
    padding: 60px;
    border-radius: 24px;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(58, 175, 169, 0.1) inset;
}

.case-study h4 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #3AAFA9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.case-study .subtitle {
    font-size: 14px;
    color: #3AAFA9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.case-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.case-details strong {
    color: #3AAFA9;
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    text-transform: uppercase;
}

.case-details p {
    color: #B8C5D6;
    line-height: 1.8;
}

.workflow-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.workflow-img {
    aspect-ratio: 16/10;
    background: rgba(23, 37, 42, 0.8);
    border: 2px solid rgba(58, 175, 169, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3AAFA9;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.workflow-img:hover {
    border-color: #3AAFA9;
    background: rgba(58, 175, 169, 0.05);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(58, 175, 169, 0.3);
}

.results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(58, 175, 169, 0.15);
}

.result-item {
    text-align: center;
    padding: 30px;
    background: rgba(58, 175, 169, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(58, 175, 169, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(58, 175, 169, 0.05) inset;
}

.result-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #3AAFA9, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.result-label {
    font-size: 13px;
    color: #B8C5D6;
    text-transform: uppercase;
}

.universal-workflows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.universal-card {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 175, 169, 0.25);
    padding: 50px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.universal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 175, 169, 0.1), transparent);
    transition: left 0.5s;
}

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

.universal-card:hover {
    transform: translateY(-10px);
    border-color: #3AAFA9;
    box-shadow: 0 20px 60px rgba(58, 175, 169, 0.2);
}

.universal-card h5 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.universal-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #B8C5D6;
    margin-bottom: 25px;
}

.tools {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tool-tag {
    background: rgba(58, 175, 169, 0.1);
    border: 1px solid rgba(58, 175, 169, 0.3);
    color: #3AAFA9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.tool-tag:hover {
    background: rgba(58, 175, 169, 0.2);
    border-color: #3AAFA9;
}

.more-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 175, 169, 0.25);
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.project-card::after {
    content: 'View Details →';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-card:hover::after {
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: #3AAFA9;
    box-shadow: 0 20px 50px rgba(58, 175, 169, 0.2);
}

.project-card h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-card p {
    font-size: 15px;
    color: #B8C5D6;
    line-height: 1.7;
}

.contact {
    padding: 120px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.contact.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials {
    padding: 120px 40px;
    background: rgba(23, 37, 42, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(58, 175, 169, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.testimonials.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(58, 175, 169, 0.25);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #3AAFA9;
    box-shadow: 0 20px 60px rgba(58, 175, 169, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: rgba(58, 175, 169, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #DEF2F1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3AAFA9, #6C63FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info p {
    font-size: 13px;
    color: #B8C5D6;
    margin: 0;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 15px;
}

.early-adopter {
    padding: 120px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
    position: relative;
    overflow: hidden;
}

.early-adopter.visible {
    opacity: 1;
    transform: translateY(0);
}

.early-adopter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 175, 169, 0.1), rgba(108, 99, 255, 0.1));
    z-index: 0;
}

.early-adopter .container {
    position: relative;
    z-index: 1;
}

.early-adopter-content {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid #3AAFA9;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(58, 175, 169, 0.4), 0 0 0 1px rgba(58, 175, 169, 0.2) inset;
}

.early-adopter-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3AAFA9, #6C63FF);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.early-adopter h3 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #3AAFA9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.early-adopter p {
    font-size: 18px;
    color: #B8C5D6;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    background: rgba(58, 175, 169, 0.05);
    border: 1px solid rgba(58, 175, 169, 0.3);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(58, 175, 169, 0.1);
    border-color: #3AAFA9;
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 32px;
    color: #3AAFA9;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 14px;
    color: #B8C5D6;
    margin: 0;
    line-height: 1.6;
}

.early-adopter-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.faq {
    padding: 120px 40px;
    background: rgba(23, 37, 42, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(58, 175, 169, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.faq.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(58, 175, 169, 0.25);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: #3AAFA9;
    box-shadow: 0 8px 32px rgba(58, 175, 169, 0.3);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    color: #3AAFA9;
}

.faq-question i {
    font-size: 20px;
    color: #3AAFA9;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #B8C5D6;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: #3AAFA9;
}

.contact {
    padding: 120px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.contact.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, #3AAFA9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.contact-info > p {
    font-size: 18px;
    color: #B8C5D6;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(58, 175, 169, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 175, 169, 0.25);
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(58, 175, 169, 0.05) inset;
}

.contact-method:hover {
    background: rgba(58, 175, 169, 0.08);
    border-color: #3AAFA9;
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(58, 175, 169, 0.2), 0 0 0 1px rgba(58, 175, 169, 0.2) inset;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-method-text h4 {
    font-size: 14px;
    color: #3AAFA9;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-method-text p {
    font-size: 16px;
    color: #DEF2F1;
    margin: 0;
}

.contact-form {
    background: rgba(23, 37, 42, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(58, 175, 169, 0.25);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(58, 175, 169, 0.1) inset;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #3AAFA9;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid rgba(58, 175, 169, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3AAFA9;
    box-shadow: 0 0 0 3px rgba(58, 175, 169, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(58, 175, 169, 0.4);
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(58, 175, 169, 0.6);
}

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

footer {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(58, 175, 169, 0.15);
    padding: 80px 40px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #3AAFA9, #6C63FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #B8C5D6;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(58, 175, 169, 0.1);
    border: 1px solid rgba(58, 175, 169, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3AAFA9;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #3AAFA9, #2d8a84);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 175, 169, 0.4);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B8C5D6;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #3AAFA9;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(58, 175, 169, 0.15);
    text-align: center;
    color: #B8C5D6;
    font-size: 14px;
}

@media (max-width: 968px) {
    .container {
        padding: 0 25px;
    }
    .menu-button {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .hero {
        padding: 140px 25px 80px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content h2 {
        font-size: 13px;
        letter-spacing: 3px;
    }
    .hero-content p {
        font-size: 17px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    .code-window {
        padding: 20px;
    }
    .code-content {
        font-size: 12px;
    }
    .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .section-tag {
        font-size: 12px;
        letter-spacing: 3px;
    }
    .about,
    .services,
    .portfolio,
    .contact {
        padding: 80px 25px;
    }
    .testimonials,
    .early-adopter,
    .faq {
        padding: 80px 25px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .testimonial-card {
        padding: 30px;
    }
    .early-adopter-content {
        padding: 40px 25px;
    }
    .early-adopter h3 {
        font-size: 32px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .stat-card {
        padding: 30px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .case-study {
        padding: 35px 25px;
    }
    .case-study h4 {
        font-size: 32px;
    }
    .case-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .workflow-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .results {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .universal-workflows {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .universal-card {
        padding: 35px 25px;
    }
    .more-projects {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info h3 {
        font-size: 40px;
    }
    .contact-form {
        padding: 35px 25px;
    }
    footer {
        padding: 60px 25px 30px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .section-title {
        font-size: 32px;
    }
    .contact-info h3 {
        font-size: 32px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
    .case-study h4 {
        font-size: 26px;
    }
    .service-card h4 {
        font-size: 22px;
    }
    .stat-number {
        font-size: 48px;
    }
}
