/* Base Styles & Variables */
:root {
    --bg-colour: #0f1110;
    --text-colour: #f8fafc;
    --text-muted: #94a3b8;
    --primary-colour: #c0ff00;
    --primary-glow: rgba(192, 255, 0, 0.4);
    --secondary-colour: #ff5e3a;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.04);
    --nav-bg: rgba(15, 17, 16, 0.85);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Manrope', sans-serif;
    color: var(--text-colour);
    background-color: var(--bg-colour);
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Syne', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 6rem 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title.left {
    text-align: left;
}

.section-title.left p {
    margin: 0;
}

.section-title h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
}

.section-title h2 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
    display: block;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.appear {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Syne', sans-serif;
}

.btn-primary {
    background: var(--primary-colour);
    color: #0f1110;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: #ffffff;
    color: #0f1110;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-colour);
    color: #0f1110;
    border-color: var(--primary-colour);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px var(--primary-glow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border: 1px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    transition: width 0.4s ease, max-width 0.4s ease, top 0.4s ease, padding 0.4s ease, border-radius 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: width, max-width, top, padding;
}

.navbar.scrolled {
    top: 20px;
    width: 90%;
    max-width: 1200px;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary-colour);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a:not(.btn-primary) {
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Syne', sans-serif;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-colour);
}

.nav-links a:not(.btn-primary)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-colour);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: 0 0 8px var(--primary-glow);
}

.nav-links a:not(.btn-primary):hover::before {
    width: 60%;
}

.nav-links .btn-primary {
    padding: 0.6rem 1.8rem;
    margin-left: 1rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: var(--text-colour);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

/* Mobile Nav Active States */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
    background-color: var(--bg-colour);
}

/* Trust Bar Section */
.trust-bar {
    background: #000000;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-item svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-grid {
        justify-content: center;
        gap: 1.5rem 2rem;
    }
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 17, 16, 0.95) 0%, rgba(15, 17, 16, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
    display: block;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 850px;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Services Grid - Modern Line Redesign */
.services {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 0% 0%, #151816 0%, #0f1110 100%);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(192, 255, 0, 0.15) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
    animation: floatDots 60s linear infinite;
}

@keyframes floatDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 1000px;
    }
}

.services::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 255, 0, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: pulse 15s infinite alternate;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #1A1A1A;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 3rem;
    border-radius: 0;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: #222222;
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-colour);
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.5;
}

.service-card .icon {
    display: inline-flex;
    margin-bottom: 2.5rem;
    transition: transform 0.5s ease;
}

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

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-colour);
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover::after {
    width: 100%;
}

/* About Section - Editorial Redesign */
.about {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: #0a0b0a;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    font-size: 14vw;
    font-weight: 900;
    color: transparent;
    z-index: 0;
    pointer-events: none;
    letter-spacing: 1.5vw;
    font-family: 'Syne', sans-serif;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    text-align: center;
    white-space: nowrap;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    margin-bottom: 6rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-colour);
    margin-bottom: 1.5rem;
    padding-left: 50px;
    position: relative;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--primary-colour);
}

.about-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
}

.about-quote {
    margin-top: 4rem;
    padding-left: 2.5rem;
    border-left: 3px solid var(--primary-colour);
}

.about-quote blockquote {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-colour);
    line-height: 1.5;
    opacity: 0.9;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-item {
    background: rgba(10, 11, 10, 0.8);
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.stat-item:hover {
    background: rgba(192, 255, 0, 0.02);
}

.stat-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-colour);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px var(--primary-colour);
}



.stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-colour);
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.8rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.counter {
    font-family: 'JetBrains Mono', monospace;
    /* Guarantees no jitter */
    display: inline-block;
    min-width: 1.5ch;
    text-align: left;
}

.stat-value sup {
    font-size: 1.5rem;
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}



/* Portfolio Redesign */
.portfolio {
    background: #080908;
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

@media (max-width: 1100px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
    }

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

.project-showcase-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.4s ease;
}

/* Device Toggle */
.device-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-btn.active {
    background: var(--primary-colour);
    color: #000;
    border-color: var(--primary-colour);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Mockup Frames */
.mockup-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mockup-frame-desktop {
    width: 100%;
    height: 100%;
    position: relative;
}

.browser-bar {
    height: 24px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.browser-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-frame-mobile {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
}

.phone-frame {
    width: 45%;
    height: 90%;
    background: #1a1a1a;
    border: 4px solid #333;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Inner Carousel */
.inner-carousel-container {
    width: 100%;
    height: calc(100% - 24px);
    /* Subtract browser bar */
    position: relative;
    overflow: hidden;
}

.inner-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.inner-slide {
    flex: 0 0 100%;
    height: 100%;
    background: #0a0a0a;
}

.inner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

/* Nav Controls */
.inner-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-wrapper:hover .inner-nav-btn {
    opacity: 1;
}

.inner-nav-btn.prev {
    left: 10px;
}

.inner-nav-btn.next {
    right: 10px;
}

.inner-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.inner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.inner-dot.active {
    background: var(--primary-colour);
    width: 12px;
    border-radius: 3px;
}

/* Info */
.project-showcase-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Syne', sans-serif;
}

.project-showcase-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mockup-frame-desktop {
        display: none !important;
    }

    .mockup-frame-mobile {
        display: flex !important;
    }

    .mockup-wrapper {
        aspect-ratio: 9/16;
        /* portrait for mobile */
    }
}


/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--text-colour);
}

.contact-form {
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-colour);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    background: var(--bg-colour);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
}

.footer-logo span {
    color: var(--primary-colour);
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links a:hover {
    color: white;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #0a0c0b 0%, rgba(192, 255, 0, 0.03) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-colour);
    transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-item:hover::after {
    width: 100%;
}

.why-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(192, 255, 0, 0.3);
    transition: all 0.4s ease;
}

.why-item:hover .why-number {
    -webkit-text-stroke: 1px var(--primary-colour);
    color: rgba(192, 255, 0, 0.1);
    transform: scale(1.1);
}

.why-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.why-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Process Section - Luxury Redesign */
.process {
    background: #080908;
    position: relative;
    overflow: hidden;
    padding: 12rem 0;
}

/* Luxury Background Elements */
.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(192, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(192, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
    z-index: 0;
    pointer-events: none;
    font-family: 'Syne', sans-serif;
    letter-spacing: 2vw;
    opacity: 0.5;
}

.process-carousel-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    overflow: hidden;
}

.process-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.process-step {
    flex: 0 0 calc(50% - 1rem);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 5rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    /* Professional sharp edges */
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(192, 255, 0, 0.3);
    transform: translateY(-10px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-colour);
    color: #000000;
    border-radius: 0;
    /* Luxury geometric shape */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Syne', sans-serif;
    margin-bottom: 3rem;
    box-shadow: 15px 15px 0px rgba(192, 255, 0, 0.1);
}

.process-step h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -1px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0.8;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
}

.nav-hint {
    color: var(--primary-colour);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.carousel-dots {
    display: flex;
    gap: 1.5rem;
}

.dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-colour);
    width: 80px;
    box-shadow: 0 0 15px var(--primary-colour);
}

@media (max-width: 1200px) {
    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .process-step {
        flex: 0 0 100%;
    }
}



.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(192, 255, 0, 0.03) 45deg,
            transparent 90deg,
            rgba(192, 255, 0, 0.03) 135deg,
            transparent 180deg,
            rgba(192, 255, 0, 0.03) 225deg,
            transparent 270deg,
            rgba(192, 255, 0, 0.03) 315deg,
            transparent 360deg);
    animation: rotateBeam 30s linear infinite;
    pointer-events: none;
}

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

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

.testimonials::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 255, 0, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: floatOrb 20s infinite alternate;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60vw, 40vh) scale(1.5);
    }
}

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

.testimonial-card {
    padding: 3rem;
    font-style: italic;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(192, 255, 0, 0.1);
    font-family: 'Syne', sans-serif;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card h4 {
    color: var(--secondary-colour);
    font-style: normal;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--text-colour);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.slide-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-down.appear {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 1s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.appear {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 1s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.appear {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Pricing Section */
.pricing {
    background: #0a0a0a;
    position: relative;
}

.main-tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
    align-items: stretch;
}

.pricing-card {
    background: #1a1a1a;
    padding: 3rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-colour);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border-color: rgba(192, 255, 0, 0.4);
    background: linear-gradient(180deg, #1a1a1a 0%, #1f221f 100%);
    transform: none !important;
    /* Force no scaling */
}

.pricing-card.popular:hover {
    transform: translateY(-10px) !important;
}

.card-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--primary-colour);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-colour);
    margin-bottom: 2rem;
    font-family: 'Syne', sans-serif;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '→';
    color: var(--primary-colour);
    font-weight: bold;
}

.card-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-style: italic;
}

/* Sub-sections */
.pricing-subsections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.custom-quote-section {
    background: #111;
    padding: 4rem;
    text-align: center;
    border: 1px dashed rgba(192, 255, 0, 0.3);
}

.custom-quote-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.custom-quote-section p {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.custom-quote-section .btn-secondary {
    display: inline-block;
}



.included-everywhere {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.included-everywhere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-colour);
}

.included-everywhere h4 {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-colour);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    opacity: 0.8;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    text-align: left;
}

.included-grid span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.included-grid span:hover {
    color: var(--primary-colour);
    transform: translateY(-2px);
}

.included-grid svg {
    flex-shrink: 0;
    opacity: 1;
}

.pricing-footer-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.note-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-left: 3px solid var(--primary-colour);
}

.note-box strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.note-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .main-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 6rem;
    }

    .included-grid,
    .pricing-footer-notes {
        grid-template-columns: 1fr;
    }
}

/* Final CTA */
.final-cta {
    background: #050505;
}

.cta-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    padding: 6rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 255, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-family: 'Syne', sans-serif;
}

.cta-content h2 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 992px) {
    .cta-content h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .cta-box {
        padding: 4rem 2rem;
    }

    .cta-content h2 {
        font-size: 2.8rem;
    }

    .cta-content h2 span {
        display: block;
        /* Stack on mobile if needed for fit */
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-acc {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item-acc:hover {
    border-color: rgba(192, 255, 0, 0.3);
    background: rgba(192, 255, 0, 0.01);
    box-shadow: none;
}

.faq-item-acc summary {
    padding: 2rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-family: 'Syne', sans-serif;
}

.faq-item-acc summary::-webkit-details-marker {
    display: none;
}

.faq-item-acc summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary-colour);
    transition: transform 0.4s ease;
}

.faq-item-acc[open] {
    border-color: var(--primary-colour);
    background: rgba(192, 255, 0, 0.02);
}

.faq-item-acc[open] summary::after {
    transform: rotate(45deg);
}

.faq-item-acc p {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-header h2 {
        font-size: 3.5rem;
    }

    .about-bg-text {
        font-size: 30vw;
    }

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

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

    .why-left {
        position: relative;
        top: 0;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 17, 16, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links .btn-primary {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

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


/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
    background: #0f1110;
}

/* Floating Globe Background Effect */
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 40px,
            rgba(192, 255, 0, 0.03) 41px,
            transparent 42px);
    border-radius: 50%;
    transform: translateY(-50%) rotate(0deg);
    animation: rotateGlobe 40s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlobe {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-colour);
    transform: translateX(10px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(192, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-muted);
}

.contact-text strong {
    color: var(--text-colour);
    display: block;
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.2rem;
}

.map-container iframe {
    filter: grayscale(100%) invert(90%) contrast(100%) brightness(0.8) hue-rotate(180deg);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.map-container:hover iframe {
    opacity: 1;
    filter: grayscale(0%) invert(0%) contrast(100%) brightness(1);
}

.contact-form {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-colour);
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: 12px;
    color: var(--text-colour);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-colour);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(192, 255, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c0ff00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.form-group select option {
    background: #0f1110;
    color: var(--text-colour);
}

.contact-form .btn-primary {
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-form .btn-primary:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.form-status {
    min-height: 1.4rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status.success {
    color: var(--primary-colour);
}

.form-status.error {
    color: #ff8a70;
}

/* Footer Overhaul */
footer {
    padding: 8rem 0 4rem;
    background: #080908;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.footer-logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    color: var(--primary-colour);
}

.footer-heading span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
    display: block;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-colour);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    color: var(--primary-colour);
    transform: translateY(-8px) scale(1.1);
}

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

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-colour);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-colour);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-list li a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-contact-list li a:hover {
    color: var(--primary-colour);
}

.footer-contact-list li svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    margin-bottom: 3rem;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 5rem;
    }

    .footer-grid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Consolidated responsive fixes */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
iframe {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-padding,
    .process {
        padding: 5rem 0;
    }

    .section-title {
        margin-bottom: 3.5rem;
    }

    .section-title h2,
    .cta-content h2 {
        font-size: clamp(2.6rem, 9vw, 4rem);
        letter-spacing: 0;
    }

    .navbar,
    .navbar.scrolled {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        transform: none;
        border-radius: 0;
        padding: 1rem 1.5rem;
        background: rgba(15, 17, 16, 0.92);
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a:not(.btn-primary) {
        padding: 0.5rem 0.45rem;
        font-size: 0.82rem;
        letter-spacing: 0.5px;
    }

    .hero {
        min-height: 640px;
        height: auto;
        padding: 7rem 1.5rem 4rem;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 6.5vw, 3.35rem);
        letter-spacing: 0;
        margin-bottom: 1.5rem;
    }

    .hero-content h1 br,
    .hero-content p br {
        display: none;
    }

    .hero-content p {
        max-width: 640px;
        margin-bottom: 1.75rem;
    }

    .hero .fade-in {
        opacity: 1;
        transform: none;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about {
        padding: 6rem 0;
    }

    .about-stats-grid,
    .why-grid,
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card,
    .why-item,
    .process-step,
    .pricing-card {
        padding: 3rem 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact::before {
        width: 420px;
        height: 420px;
        right: -220px;
    }

    .footer-main {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section-padding,
    .process {
        padding: 4rem 0;
    }

    .section-title {
        margin-bottom: 2.75rem;
    }

    .section-title.left {
        text-align: left;
    }

    .section-title h2,
    .cta-content h2 {
        font-size: clamp(1.75rem, 9.5vw, 2.45rem);
        line-height: 1;
    }

    .section-title p,
    .cta-content p,
    .hero-content p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 16px;
    }

    .nav-links a:not(.btn-primary),
    .nav-links .btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 600px;
        padding: 6rem 1rem 3rem;
        align-items: center;
    }

    .hero-content h1 {
        font-size: clamp(1.65rem, 8vw, 2.05rem);
        line-height: 1.05;
        margin-bottom: 1.25rem;
    }

    .hero-content h1 br,
    .hero-content p br {
        display: none;
    }

    .hero .fade-in {
        opacity: 1;
        transform: none;
    }

    .hero-content p {
        margin-bottom: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.78rem 1.2rem;
        border-radius: 24px;
    }

    .nav-links .btn-primary,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .project-showcase-info .btn-primary,
    .contact-form .btn-primary {
        padding: 0.72rem 1rem;
    }

    .hero-buttons,
    .cta-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .pricing-card .btn-primary,
    .project-showcase-info .btn-primary,
    .contact-form .btn-primary {
        width: min(100%, 280px);
        text-align: center;
    }

    .trust-grid,
    .about-stats-grid,
    .why-grid,
    .portfolio-showcase-grid,
    .pricing-footer-notes {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: center;
        text-align: center;
    }

    .about-description p,
    .about-quote blockquote {
        font-size: 1rem;
    }

    .about-quote {
        margin-top: 2.5rem;
        padding-left: 1.25rem;
    }

    .stat-item,
    .service-card,
    .why-item,
    .process-step,
    .pricing-card,
    .note-box,
    .included-everywhere,
    .contact-form,
    .cta-box {
        padding: 2rem 1.25rem;
    }

    .stat-value,
    .why-number,
    .price {
        font-size: 2.25rem;
    }

    .services-grid,
    .main-tiers {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .process-carousel {
        gap: 1rem;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .carousel-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .dot,
    .dot.active {
        width: 40px;
    }

    .device-toggle {
        display: none;
    }

    .project-showcase-card {
        gap: 1.1rem;
    }

    .portfolio-showcase-grid {
        gap: 2.25rem;
        margin-top: 2.75rem;
    }

    .mockup-wrapper {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
        gap: 0.65rem;
        aspect-ratio: auto;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
    }

    .mockup-frame-desktop,
    .mockup-frame-mobile {
        display: block !important;
        min-width: 0;
        overflow: hidden;
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
    }

    .mockup-frame-desktop {
        aspect-ratio: 16 / 10;
    }

    .mockup-frame-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        aspect-ratio: 9 / 16;
    }

    .phone-frame {
        width: 76%;
        height: 90%;
        border-width: 3px;
        border-radius: 16px;
    }

    .browser-bar {
        height: 18px;
    }

    .inner-carousel-container {
        height: calc(100% - 18px);
    }

    .mockup-frame-mobile .inner-carousel-container {
        height: 100%;
    }

    .project-showcase-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.55rem;
    }

    .project-showcase-info p {
        font-size: 0.86rem;
        margin-bottom: 1.25rem;
        line-height: 1.55;
    }

    .project-category {
        font-size: 0.72rem;
    }

    .contact-item {
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .contact-item:hover {
        transform: none;
    }

    .map-container {
        margin-top: 0.75rem !important;
        padding: 0.6rem !important;
        border-radius: 10px !important;
        max-height: 190px;
        overflow: hidden;
    }

    .map-container iframe {
        display: block;
        height: 155px;
        border-radius: 6px !important;
    }

    .contact-form {
        gap: 1rem;
        padding: 1.15rem 1rem;
    }

    .contact-form-wrapper > p {
        margin-bottom: 1.25rem !important;
        font-size: 1rem !important;
    }

    .form-group {
        gap: 0.5rem;
        margin-bottom: 0;
    }

    .form-group label {
        font-size: 0.78rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.78rem 0.9rem;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 96px;
    }

    .footer-main,
    .footer-grid,
    .copyright {
        text-align: left;
    }

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

@media (max-width: 480px) {
    .section-title h2,
    .hero-content h1,
    .cta-content h2 {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .hero {
        min-height: 560px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.72rem 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .project-showcase-info .btn-primary,
    .contact-form .btn-primary {
        padding: 0.68rem 0.95rem;
    }

    .section-title h2,
    .cta-content h2 {
        font-size: clamp(1.55rem, 8.8vw, 2.05rem);
    }

    .service-card h3,
    .why-content h3,
    .process-step h3,
    .pricing-card h3,
    .custom-quote-section h3 {
        font-size: 1.25rem;
    }

    .mockup-wrapper {
        gap: 0.45rem;
    }

    .browser-bar {
        height: 14px;
        padding: 0 6px;
    }

    .browser-dot {
        width: 4px;
        height: 4px;
    }

    .inner-carousel-container {
        height: calc(100% - 14px);
    }

    .phone-frame {
        width: 82%;
        border-width: 2px;
        border-radius: 12px;
    }

    .card-badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 1.25rem;
        display: inline-flex;
    }

    .included-grid {
        gap: 1rem;
        justify-content: flex-start;
    }

    .included-grid span {
        width: 100%;
    }

    .footer-heading {
        font-size: 2.25rem;
        letter-spacing: 0;
    }
}
