* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'NerdyOtter';
}

@font-face {
    font-family: 'NerdyOtter';
    src: url('assets/NerdyOtterAuto.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-orange: rgba(244,159,66,1);
    --primary-orange-dark: rgba(220,143,60,1);
    --primary-orange-light: rgba(244,179,106,1);
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray-medium: #404040;
    --gray-medium-light: #808080;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #404040;
}

html {
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    font-weight: 400;
    background:
        radial-gradient(circle at 25% 25%, rgba(244, 159, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(244, 159, 66, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L20,10 M10,0 L10,20" stroke="%23F49F42" stroke-width="0.3" opacity="0.2" fill="none"/><circle cx="10" cy="10" r="1" fill="%23F49F42" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>') repeat,
        linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    animation: tech-pulse 8s ease-in-out infinite;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo #logo-image {
    width: 8%;
    min-width: 50px;
}

.logo #logo-text {
    width: 10%;
    min-width: 60px;
}

@keyframes tech-pulse {

    0%,
    100% {
        background:
            radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L20,10 M10,0 L10,20" stroke="%23F49F42" stroke-width="0.3" opacity="0.2" fill="none"/><circle cx="10" cy="10" r="1" fill="%23F49F42" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>') repeat,
            linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    }

    50% {
        background:
            radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L20,10 M10,0 L10,20" stroke="%23F49F42" stroke-width="0.3" opacity="0.3" fill="none"/><circle cx="10" cy="10" r="1" fill="%23F49F42" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>') repeat,
            linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    }
}

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

header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-orange);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 32px rgba(255, 107, 53, 0.2);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light), var(--gray-light), var(--primary-orange));
    background-size: 200% 100%;
    animation: header-shimmer 3s ease-in-out infinite;
}

@keyframes header-shimmer {

    0%,
    100% {
        background-position: 200% 0;
    }

    50% {
        background-position: -200% 0;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-60%) rotate(5deg);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: x-large;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 80%;
}

.hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 50%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    animation: hero-particles 15s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.03) 90deg, transparent 180deg, rgba(255, 255, 255, 0.03) 270deg, transparent 360deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes hero-particles {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #ffffff 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

@keyframes text-shimmer {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 200% 200%;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--white) 0%, var(--silver-light) 100%);
    color: var(--primary-orange);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 14px 0 rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, var(--silver-light) 0%, var(--white) 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    transform: translateX(3px);
}

.services {
    padding: 8rem 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        var(--gray-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232563EB" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--black-light) 0%, rgba(40, 40, 40, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light), var(--gray-light), var(--primary-orange));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: all 0.4s ease;
    animation: service-line 3s linear infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

@keyframes service-line {

    0%,
    100% {
        background-position: 200% 0;
    }

    50% {
        background-position: -200% 0;
    }
}

.service-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow:
        0 25px 50px rgba(244, 159, 66, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
}

.service-card:hover img {
    filter: brightness(0.0);
}

.service-card:hover h3 {
    color: var(--black);
}

.service-card:hover p {
    color: var(--black);
    font-weight: 500;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: scale(2);
    opacity: 0.7;
}

.service-card h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-align: center;
    display: inline-block;
    width: auto;
}

.service-card h3::before {
    content: '◆';
    position: absolute;
    left: -25px;
    color: var(--black);
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.5);
}

.service-card:hover h3::before {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}

.service-card h3::after {
    content: '◆';
    position: absolute;
    right: -25px;
    color: var(--black);
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.5);
}

.service-card:hover h3::after {
    opacity: 1;
    transform: scale(1) rotate(45deg);
}

.service-card img {
    display: block;
    margin: 1rem auto;
}

.service-card p {
    color: var(--gray-light);
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1.6;
}

.about {
    padding: 8rem 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(244, 159, 66, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(244, 159, 66, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #f5f5f5 25%, #ffffff 50%, #f8f8f8 75%, #fafafa 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="subtle-grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M0,30 L60,30 M30,0 L30,60" stroke="%23F49F42" stroke-width="0.5" opacity="0.05" fill="none"/><circle cx="30" cy="30" r="1.5" fill="%23F49F42" opacity="0.08"/></pattern></defs><rect width="60" height="60" fill="url(%23subtle-grid)"/></svg>') repeat;
    position: relative;
    overflow: hidden;
    color: black;
    font-size: large;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(244, 159, 66, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(244, 159, 66, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

@keyframes pulse-gradient {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.about h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about p {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

.stat h3 {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.stat:hover h3::after {
    opacity: 1;
    width: 50px;
}

.stat p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact {
    padding: 8rem 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 81, 0, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--gray-dark) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23ffffff" opacity="0.3"/><circle cx="6" cy="6" r="0.5" fill="%23ffffff" opacity="0.2"/><circle cx="19" cy="19" r="0.5" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    animation: star-field 25s linear infinite;
}

.contact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.05) 45deg, transparent 90deg, rgba(255, 255, 255, 0.05) 135deg, transparent 180deg, rgba(255, 255, 255, 0.05) 225deg, transparent 270deg, rgba(255, 255, 255, 0.05) 315deg, transparent 360deg);
    animation: slow-rotate 30s linear infinite;
}

@keyframes star-field {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

@keyframes slow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact a {
    color: var(--black);
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
}

.contact h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact>.container>p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-item {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 16px 16px 0 0;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--gray-light);
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

#emailContactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

#emailContactForm input[type="text"],
#emailContactForm input[type="email"],
#emailContactForm textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    outline: none;
}

#emailContactForm input[type="text"]:focus,
#emailContactForm input[type="email"]:focus,
#emailContactForm textarea:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

#emailContactForm input[type="text"]::placeholder,
#emailContactForm input[type="email"]::placeholder,
#emailContactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#emailContactForm textarea {
    min-height: 120px;
    resize: vertical;
}

#emailContactForm button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#emailContactForm button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

#emailContactForm button[type="submit"]:active {
    transform: translateY(-1px);
}

#emailContactForm button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#emailContactForm button[type="submit"]:hover::before {
    left: 100%;
}

#result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#result:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

#result.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

#result.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

footer {
    background:
        linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>') repeat;
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    body {
        animation: tech-pulse 10s ease-in-out infinite;
    }

    header {
        position: fixed;
    }

    main {
        margin-top: 80px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 100;
    }

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

    .nav-links li a {
        font-size: 2rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-links li a:hover {
        background: rgba(244, 159, 66, 0.1);
        transform: scale(1.05);
    }

    nav {
        padding: 1rem 2rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact {
        scroll-margin-top: 80px;
    }

    .service-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

    .services,
    .about,
    .contact {
        padding: 3rem 0;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }
}