/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-dark-blue: #0A0E27;
    --color-blue: #1A2332;
    --color-accent-yellow: #C9FF00;
    --color-accent-blue: #00D4FF;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 2rem 0;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at top left, #0A0E27 0%, #000000 50%),
                radial-gradient(ellipse at bottom right, #1A2332 0%, #000000 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(26, 0, 77, 0.3), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(77, 0, 255, 0.2), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-text-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    transition: font-size 0.1s ease-out, transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-title .highlight {
    color: var(--color-accent-yellow);
    font-weight: 400;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 0;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    transition: all 0.3s ease;
    box-shadow: none;
    background: transparent;
}

.btn-scroll svg {
    transition: transform 0.3s ease;
}

.btn-scroll:hover {
    background: transparent;
    box-shadow: none;
    border: none;
    transform: translateY(-2px);
    opacity: 0.7;
}

.btn-scroll:hover svg {
    transform: translateY(3px);
}

/* Overlay Sections - These will overlap the hero */
.overlay-section {
    position: relative;
    z-index: 10;
    background: var(--color-dark-blue);
    padding: 8rem 0;
    margin-top: -50vh;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Featured Work Section */
.featured-work {
    background: linear-gradient(to bottom, transparent 0%, var(--color-dark-blue) 20%);
    position: relative;
    z-index: 10;
}

.featured-work .container {
    padding-top: 50vh;
    position: relative;
}

.work-header {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, scale 0.3s ease;
}

.work-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.work-tagline {
    margin-bottom: 2rem;
}

.tagline-line {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-white);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.tagline-line.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.tagline-line:nth-child(1) {
    transition-delay: 0.1s;
}

.tagline-line:nth-child(2) {
    transition-delay: 0.2s;
}

.tagline-line:nth-child(3) {
    transition-delay: 0.3s;
}

.work-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.work-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    transition: opacity 0.3s ease, transform 0.3s ease, scale 0.3s ease;
}

.work-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.work-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.work-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    cursor: none;
}

.work-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-item:hover .work-video {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.cursor-button {
    position: fixed;
    padding: 0.75rem 1.5rem;
    background: rgba(77, 0, 255, 0.95);
    border: 1px solid rgba(77, 0, 255, 0.5);
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    left: -9999px;
    top: -9999px;
    display: none;
    box-shadow: 0 4px 20px rgba(77, 0, 255, 0.3);
}

.cursor-button.active {
    opacity: 1;
    display: block;
}

.cursor-button.clicked {
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.95), rgba(0, 180, 71, 0.95));
    border-color: rgba(0, 200, 81, 1);
    box-shadow: 0 0 30px rgba(0, 200, 81, 0.6);
    animation: cursorButtonPulse 0.5s ease;
}

@keyframes cursorButtonPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 200, 81, 0.7);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 0 15px rgba(0, 200, 81, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 200, 81, 0);
    }
}

.work-info {
    color: var(--color-white);
}

.work-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.work-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Roadmap */
.work-roadmap {
    margin-top: 5rem;
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, scale 0.3s ease;
}

.work-roadmap.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    gap: 2rem;
}

.roadmap-start-value,
.roadmap-end-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    position: relative;
    z-index: 1;
}

.roadmap-number {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.roadmap-unit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    text-transform: lowercase;
}

.roadmap-timestamp {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    text-transform: lowercase;
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}

.roadmap-steps-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.roadmap-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 0, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(77, 0, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    margin-bottom: 0.5rem;
}

.roadmap-icon svg {
    width: 32px;
    height: 32px;
}

.roadmap-step.active .roadmap-icon {
    background: rgba(77, 0, 255, 0.2);
    border-color: rgba(77, 0, 255, 0.8);
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(77, 0, 255, 0.4);
}

.roadmap-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(77, 0, 255, 0.5);
    position: relative;
    transition: all 0.4s ease;
}

.roadmap-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(77, 0, 255, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-step.active .roadmap-dot {
    background: rgba(77, 0, 255, 0.2);
    border-color: rgba(77, 0, 255, 1);
    box-shadow: 0 0 20px rgba(77, 0, 255, 0.5);
}

.roadmap-step.active .roadmap-dot::after {
    opacity: 1;
}

.roadmap-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.roadmap-step.active .roadmap-label {
    color: rgba(255, 255, 255, 0.9);
}

.roadmap-line {
    flex: 1;
    height: 3px;
    position: relative;
    margin: 0 1.5rem;
    overflow: hidden;
}

.roadmap-line-dots {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 12px 2px;
    background-position: 0 0;
    position: relative;
}

.roadmap-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(77, 0, 255, 0.6) 20%, 
        rgba(77, 0, 255, 1) 50%, 
        rgba(77, 0, 255, 0.6) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(77, 0, 255, 0.8);
    animation: roadmapLight 3s ease-in-out infinite;
    opacity: 0;
}

.roadmap-container.animate .roadmap-light {
    opacity: 1;
}

@keyframes roadmapLight {
    0% {
        left: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, transparent 0%, var(--color-dark-blue) 10%);
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 20;
    margin-top: -50vh;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 100vh;
}

.services .container {
    padding-top: 50vh;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.premium-services {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 4rem auto 0;
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.premium-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(77, 0, 255, 0.2);
    border-radius: 12px;
    padding: 3.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77, 0, 255, 0.5);
    background: rgba(77, 0, 255, 0.08);
    box-shadow: 0 10px 40px rgba(77, 0, 255, 0.2);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 0, 77, 0.3), rgba(77, 0, 255, 0.3));
    border-radius: 50%;
    border: 1px solid rgba(77, 0, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.premium-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(26, 0, 77, 0.5), rgba(77, 0, 255, 0.5));
    border-color: rgba(77, 0, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(77, 0, 255, 0.4);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.premium-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.premium-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent-blue);
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background: var(--color-dark-blue);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1A004D, #4D00FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--color-white);
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

.why-us-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: linear-gradient(135deg, #1A004D, #4D00FF);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.visual-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.visual-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--color-dark-blue);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--color-dark-blue);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-form {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, #1A004D, #4D00FF);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77, 0, 255, 0.3);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-note {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
}

.cta-note p {
    font-size: 0.9rem;
    font-weight: 300;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .overlay-section {
        margin-top: -30vh;
        padding: 4rem 0;
    }

    .featured-work .container {
        padding-top: 30vh;
    }

    .tagline-line {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .work-description {
        font-size: 1rem;
    }

    .work-video-wrapper {
        aspect-ratio: 16 / 9;
    }

    .work-roadmap {
        margin-top: 3rem;
        padding: 3rem 0;
    }

    .roadmap-container {
        flex-direction: column;
        gap: 2rem;
    }

    .roadmap-start-value,
    .roadmap-end-value {
        min-width: auto;
    }

    .roadmap-number {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .roadmap-steps-wrapper {
        width: 100%;
    }

    .roadmap-line {
        width: 2px;
        height: 60px;
        margin: 0;
        transform: rotate(90deg);
    }

    .roadmap-label {
        font-size: 0.9rem;
    }

    .why-us-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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

    .premium-services {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-card {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text-wrapper {
        padding: 0 20px;
    }

    .btn-scroll {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .btn-scroll svg {
        width: 16px;
        height: 16px;
    }
}
