* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

a,
button,
.service-card,
.btn,
.hamburger,
.service-link,
.contact-item,
input,
select,
textarea,
[role="button"],
.submit-btn {
    cursor: none !important;
}

input,
textarea,
select {
    cursor: text !important;
}

a:hover,
button:hover,
[role="button"]:hover {
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
.logo {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: #a0a0a0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.cursor {
    width: 12px;
    height: 12px;
    background-color: #0cc0df;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(12, 192, 223, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: #0cc0df;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0cc0df;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 2rem;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #0cc0df;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #0cc0df;
    color: #0cc0df;
    transform: translateY(-3px);
}

.btn-secondary {
    border-color: #e0e0e0;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #0cc0df;
    font-weight: 500;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-highlight {
    color: #0cc0df;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0cc0df;
    font-family: 'Space Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
}

.visual-grid {
    position: relative;
    height: 200px;
    margin-bottom: 1rem;
}

.grid-line {
    position: absolute;
    background-color: rgba(12, 192, 223, 0.2);
}

.grid-line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 25%;
}

.grid-line:nth-child(2) {
    width: 100%;
    height: 1px;
    top: 50%;
}

.grid-line:nth-child(3) {
    width: 100%;
    height: 1px;
    top: 75%;
}

.grid-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #0cc0df;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px #0cc0df;
}

.visual-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(12, 192, 223, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 2rem;
    color: #0cc0df;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    color: #0cc0df;
    font-weight: 500;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #0cc0df;
}

.contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #a0a0a0;
}

.contact-item a {
    font-weight: 500;
}

.contact-item a:hover {
    color: #0cc0df;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #0cc0df;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #a0a0a0;
    flex-wrap: wrap;
    gap: 1rem;
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

.about-geo-modern {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
}

.geo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(12, 192, 223, 0.3);
    transition: all 0.3s ease;
}

.geo-ring-1 {
    width: 80px;
    height: 80px;
    border-color: rgba(12, 192, 223, 0.8);
    animation: rotateSlow 20s linear infinite;
}

.geo-ring-2 {
    width: 180px;
    height: 180px;
    border-style: dashed;
    animation: rotateSlow 40s linear infinite reverse;
}

.geo-ring-3 {
    width: 280px;
    height: 280px;
    animation: rotateSlow 80s linear infinite;
}

.geo-cross-h {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 1px;
    background: rgba(12, 192, 223, 0.2);
    transform: translate(-50%, -50%);
}

.geo-cross-v {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 280px;
    background: rgba(12, 192, 223, 0.2);
    transform: translate(-50%, -50%);
}

.geo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #0cc0df;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(12, 192, 223, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.geo-label {
    position: absolute;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #a0a0a0;
    opacity: 0.7;
}

.geo-label-tl {
    top: 10px;
    left: 10px;
}

.geo-label-tr {
    top: 10px;
    right: 10px;
}

.geo-label-bl {
    bottom: 10px;
    left: 10px;
}

.geo-label-br {
    bottom: 10px;
    right: 10px;
    color: #0cc0df;
    opacity: 1;
}

@keyframes rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@media (max-width: 768px) {
    .about-geo-modern {
        width: 280px;
        height: 280px;
    }

    .geo-ring-3 {
        width: 220px;
        height: 220px;
    }

    .geo-cross-h {
        width: 220px;
    }

    .geo-cross-v {
        height: 220px;
    }
}