:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --primary: #F44A22;
    --text-muted: #888888;
    --border-color: #333333;
    --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: "Space Grotesk", sans-serif;
    --font-display: "Michroma", sans-serif;
}

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

html,
body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    font-family: var(--font-main);
    color: var(--text-main);
    overflow-x: hidden;
    cursor: none;
    scrollbar-color: var(--primary) var(--bg-color);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: var(--bg-color);
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: #d13a16;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 999999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(244, 74, 34, 0.1);
    border-color: transparent;
}

.reveal {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(100px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader {
    position: relative;
    width: 120px;
    height: 90px;
    margin: 0 auto;
}

.loader:before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: var(--primary);
    animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.loader:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 7px;
    width: 45px;
    border-radius: 4px;
    box-shadow: 0 5px 0 #fff, -35px 50px 0 #fff, -70px 95px 0 #fff;
    animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
    0% {
        transform: scale(1, 0.7);
    }

    40% {
        transform: scale(0.8, 1.2);
    }

    60% {
        transform: scale(1, 1);
    }

    100% {
        bottom: 140px;
    }
}

@keyframes loading-step {
    0% {
        box-shadow: 0 10px 0 rgba(0, 0, 0, 0), 0 10px 0 #fff, -35px 50px 0 #fff, -70px 90px 0 #fff;
    }

    100% {
        box-shadow: 0 10px 0 #fff, -35px 50px 0 #fff, -70px 90px 0 #fff, -70px 90px 0 rgba(0, 0, 0, 0);
    }
}

#wrapper {
    width: 100%;
    position: relative;
}

.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 2rem;
    z-index: 10000;
}

.navbar {
    width: 100%;
    max-width: 1600px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-center {
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover i {
    color: var(--primary);
}

.nav-left .email-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

.btn-book {
    --btn-color: var(--text-main);
    font-family: inherit;
    display: inline-block;
    padding: 0.8em 2em;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--btn-color);
    text-decoration: none;
    background: transparent;
}

.btn-book:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--primary);
    height: 200px;
    width: 200px;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btn-book:hover {
    color: var(--text-main);
    border-color: var(--primary);
}

.btn-book:hover:before {
    top: -30px;
    left: -30px;
}

#home {
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    border-radius: 0 0 70px 70px;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

#home-content {
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 1;
}

#home-content h3 {
    font-family: var(--font-display);
    color: var(--primary);
    letter-spacing: 3px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#home-content h1 {
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    text-transform: uppercase;
}

#home-content h1 span {
    color: var(--primary);
}

#home-content-p {
    position: absolute;
    top: 79%;
    left: 9.5%;
    width: 30%;
    z-index: 20;
    text-align: left;
}

#home-content-p p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}

.social-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    z-index: 100;
}

.social-btn {
    --btn-size: 50px;
    width: var(--btn-size);
    height: var(--btn-size);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.icon-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 1;
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.5);
}

.social-btn:hover .bg-layer {
    opacity: 1;
    transform: scale(1) rotate(15deg);
}

.social-btn:hover .icon-container {
    background-color: transparent;
    border-color: transparent;
}

.social-btn:hover .icon-container i {
    transform: scale(1.1);
}

.glass-card {
    position: absolute;
    top: 79vh;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 30%;
    min-width: 550px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    z-index: 50;
    text-align: left;
}

.card-tag {
    display: inline-block;
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border-radius: 50px;
}

.glass-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.glass-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.glass-card p span {
    color: var(--primary);
}

#about {
    background-color: #0F0F0F;
    min-height: 100vh;
    width: 100%;
    margin-top: -70px;
    padding-top: 350px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.stats-strip {
    display: flex;
    justify-content: space-between;
    width: 85%;
    max-width: 1400px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    margin-bottom: 6rem;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: whitesmoke;
    transition: all 0.3s ease;
}

.stat-block:hover .stat-num {
    color: var(--primary);
    -webkit-text-stroke: 0px;
}

.stat-desc {
    font-family: var(--font-main);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.4;
    text-align: left;
}

.section-label {
    width: 85%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.label-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 85%;
    max-width: 1400px;
    margin-bottom: 8rem;
}

.service-card {
    background: linear-gradient(180deg, #141414 0%, #0F0F0F 100%);
    border: 1px solid #222;
    border-radius: 4px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px -10px rgba(244, 74, 34, 0.15);
}

.card-top {
    margin-bottom: 2rem;
}

.card-top i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
    transition: 0.4s;
}

.service-card:hover .card-top i {
    color: var(--primary);
    transform: scale(1.1);
}

.card-top h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.card-body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.card-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.tech-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid #333;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
}

.service-card:hover .tech-tag {
    border-color: var(--primary);
    color: var(--text-main);
}

.cta-section {
    width: 85%;
    max-width: 1400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 4px;
}

.cta-btn {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    color: var(--primary);
    letter-spacing: 2px;
}

.cta-btn i {
    font-size: 3rem;
}

#work {
    background-color: #050505;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    min-height: 100vh;
    width: 100%;
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
}

.work-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    background: #0A0A0A;
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 20px rgba(244, 74, 34, 0.4);
}

.work-panel {
    display: none;
    width: 85%;
    max-width: 1400px;
    animation: fadeIn 0.5s ease forwards;
}

.work-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.project-card {
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.project-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, #0F0F0F 0%, #050505 100%);
}

.project-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.card-visual {
    height: 200px;
    width: 100%;
    background: #111;
    margin-bottom: 2rem;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
}

.visual-icon {
    font-size: 4rem;
    color: #222;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-main);
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-actions a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: 0.3s;
}

.card-actions a:hover {
    color: var(--primary);
}

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

.tech-row {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-row span {
    font-size: 0.7rem;
    background: #111;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-muted);
    border: 1px solid #222;
}

.coming-soon-card {
    width: 100%;
    height: 400px;
    background: repeating-linear-gradient(45deg, #0A0A0A, #0A0A0A 10px, #0F0F0F 10px, #0F0F0F 20px);
    border: 1px dashed var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
}

.coming-soon-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0.5;
}

.coming-soon-card h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.coming-soon-card p {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #222;
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    width: 50%;
    height: 100%;
    background: var(--primary);
    animation: load 2s infinite ease-in-out;
}

@keyframes load {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

#testimonials {
    background-color: #0F0F0F;
    min-height: 80vh;
    width: 100%;
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 85%;
    max-width: 1400px;
}

.testi-card {
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: all 0.3s ease;
    position: relative;
}

.testi-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.big-quote {
    font-size: 3rem;
    color: #222;
    margin-bottom: 1rem;
    display: block;
    transition: 0.3s;
}

.testi-card:hover .big-quote {
    color: var(--primary);
}

.testi-content p {
    font-family: var(--font-main);
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
}

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

.client-avatar {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 0.9rem;
}

.client-info h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--primary);
    font-size: 0.9rem;
}

#pricing {
    background-color: #050505;
    min-height: 100vh;
    width: 100%;
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
}

.pricing-container {
    width: 85%;
    max-width: 1400px;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.pricing-tabs {
    display: inline-flex;
    gap: 1rem;
    margin-bottom: 4rem;
    background: #0A0A0A;
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.pricing-tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab-btn:hover {
    color: var(--text-main);
}

.pricing-tab-btn.active {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 20px rgba(244, 74, 34, 0.4);
}

.pricing-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.pricing-panel.active {
    display: block;
}

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

.pricing-card {
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(244, 74, 34, 0.2);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--text-main);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 20px;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 0.2rem;
}

.amount {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-main);
    line-height: 1;
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.plan-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.select-plan-btn {
    display: inline-block;
    text-align: center;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-card.popular .select-plan-btn {
    background: var(--primary);
    border-color: var(--primary);
}

.select-plan-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.consultation-card {
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-card i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.consultation-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.consultation-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.book-consultation-btn {
    display: inline-block;
    background: var(--primary);
    border: 1px solid var(--primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-consultation-btn:hover {
    background: transparent;
    color: var(--primary);
}

#faq {
    background-color: #050505;
    position: relative;
    min-height: 80vh;
    width: 100%;
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.faq-container {
    width: 85%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch;
}

.faq-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-header {
    font-family: var(--font-display);
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.faq-header i {
    color: var(--primary);
}

.faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-btn {
    position: relative;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
}

.faq-btn-decor {
    width: 8px;
    height: 8px;
    background: #333;
    transition: 0.3s;
}

.faq-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.faq-text {
    flex: 1;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.faq-arrow {
    color: var(--primary);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.faq-btn:hover {
    background: rgba(244, 74, 34, 0.05);
    border-color: var(--primary);
    transform: translateX(15px);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.5);
}

.faq-btn:hover .faq-btn-decor {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.faq-btn:hover .faq-text {
    color: var(--text-main);
}

.faq-btn:hover .faq-arrow {
    opacity: 1;
    transform: translateX(0);
}

.terminal-wrapper {
    flex: 1.2;
    height: 650px;
    min-height: 600px;
    position: relative;
}

.faq-terminal {
    width: 100%;
    height: 100%;
    background: #080808;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(244, 74, 34, 0.15), inset 0 0 50px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.6;
}

.terminal-header {
    background: #0F0F0F;
    padding: 12px 20px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.header-left i {
    color: var(--primary);
}

.terminal-title {
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.traffic-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.light.red {
    background: #FF5F56;
}

.light.yellow {
    background: #FFBD2E;
}

.light.green {
    background: #27C93F;
    box-shadow: 0 0 10px #27C93F;
}

.terminal-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.log-line {
    position: relative;
}

.log-line.system {
    color: #27C93F;
}

.log-line.user {
    color: var(--text-main);
    text-align: left;
    margin-top: 10px;
    padding-left: 15px;
    border-left: 2px solid var(--text-muted);
}

.log-line.user::before {
    content: "> INPUT: ";
    color: var(--text-muted);
}

.log-line.bot {
    color: var(--primary);
    padding-left: 15px;
    border-left: 2px solid var(--primary);
    text-shadow: 0 0 10px rgba(244, 74, 34, 0.4);
}

.terminal-footer {
    padding: 12px 25px;
    background: #0A0A0A;
    border-top: 1px solid #222;
    color: #27C93F;
    font-family: monospace;
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    z-index: 2;
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #080808;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
    border: 1px solid #080808;
}

footer {
    background-color: #050505;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    width: 100%;
    padding-top: 6rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    /* Reduced from 1400px to fix center alignment on desktop */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-cta {
    margin-bottom: 4rem;
}

.cta-label {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.footer-cta h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.huge-link {
    font-family: var(--font-display);
    font-size: 5vw;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.1;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.huge-link:hover {
    color: var(--primary);
    transform: translateX(20px);
}

.huge-link i {
    font-size: 0.6em;
    opacity: 0;
    transform: translate(-20px, 20px);
    transition: all 0.4s ease;
}

.huge-link:hover i {
    opacity: 1;
    transform: translate(0, 0);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #222;
    margin-bottom: 4rem;
}

.footer-grid {
    display: grid;
    /* CHANGED: Fixed asymmetric grid. Now 3 equal columns for perfect centering */
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-nav a i {
    opacity: 0;
    transform: translateX(-5px);
    transition: 0.3s;
    font-size: 0.9rem;
    color: var(--primary);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-nav a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0px;
    border-radius: 50px;
    color: #27C93F;
    font-family: monospace;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.status-light {
    width: 8px;
    height: 8px;
    background: #27C93F;
    border-radius: 50%;
    box-shadow: 0 0 10px #27C93F;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.location-text {
    font-family: monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.copyright-text {
    font-family: monospace;
    color: #444;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .huge-link {
        font-size: 8vw;
    }

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

    .big-name {
        font-size: 18vw;
    }

    .glass-card {
        width: 90%;
        min-width: auto;
        left: 50%;
    }
}

@media (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }

    .glass-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 90% !important;
        min-width: 0 !important;
        margin: 2rem auto !important;
        padding: 1.5rem !important;
        opacity: 1 !important;
        filter: blur(0) !important;
    }

    .work-tabs,
    .pricing-tabs {
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        flex-direction: column !important;
        gap: 10px !important;
        border-radius: 0 !important;
    }

    .tab-btn,
    .pricing-tab-btn {
        width: 100% !important;
        text-align: center !important;
        background: #0A0A0A !important;
        border: 1px solid var(--border-color) !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        margin: 0 !important;
    }

    .tab-btn.active,
    .pricing-tab-btn.active {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        color: white !important;
    }

    .cta-btn {
        font-size: 1.2rem !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem !important;
        border: 1px solid var(--primary) !important;
        border-radius: 50px !important;
        background: var(--primary) !important;
        color: white !important;
    }

    .cta-btn i {
        font-size: 1.5rem !important;
    }

    .nav-right .btn-book {
        background-color: var(--primary) !important;
        border-color: var(--primary) !important;
        color: white !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }

    .nav-right {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0.5rem;
    }

    #faq {
        display: none !important;
    }

    .big-name {
        font-size: 15vw !important;
        line-height: 1 !important;
        margin-bottom: 0 !important;
        padding-bottom: 20px !important;
        width: 100% !important;
        overflow: visible !important;
    }

    footer {
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }

    .nav-left,
    .nav-center,
    .social-group {
        display: none !important;
    }

    .navbar {
        flex-direction: column !important;
        padding: 1rem !important;
    }

    #home-content h1 {
        font-size: 14vw !important;
        line-height: 1.1 !important;
    }

    #home-content-p {
        display: none !important;
    }

    .stats-strip {
        flex-wrap: wrap !important;
        gap: 2rem !important;
        justify-content: center !important;
    }

    .stat-block {
        width: 45% !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .stat-num {
        font-size: 3rem !important;
        -webkit-text-stroke: 0px !important;
        color: white !important;
    }

    .services-container,
    .projects-grid,
    .testimonial-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 2rem !important;
    }

    .project-card,
    .pricing-card {
        width: 100% !important;
        max-width: none !important;
    }

    .huge-link {
        font-size: 6vw !important;
        word-break: break-all !important;
        display: inline-block !important;
        line-height: 1.2 !important;
    }
}