/* =========================================================
   DARKANACONDA
   WEB DESIGN & DEVELOPMENT
   COMPLETE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    color: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


section {
    padding: 120px 0;
}


.eyebrow {
    color: #b8ff00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}


h1,
h2,
h3 {
    line-height: 1.1;
}


h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}


h2 {
    font-size: clamp(40px, 5vw, 68px);
    max-width: 900px;
    letter-spacing: -2px;
}


h2 span {
    color: #b8ff00;
}


.section-description {
    color: #888888;
    max-width: 620px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid #181818;
    backdrop-filter: blur(14px);
}


.navbar .container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.logo {
    position: relative;
    z-index: 1002;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}


.logo::first-letter {
    color: #b8ff00;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}


.nav-links a {
    color: #999999;
    font-size: 13px;
    font-weight: 600;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.nav-links a:hover {
    color: #b8ff00;
}


.nav-button {
    border: 1px solid #b8ff00;
    color: #b8ff00 !important;
    padding: 11px 18px;
    font-size: 12px !important;
    font-weight: 800 !important;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.nav-button:hover {
    background: #b8ff00;
    color: #050505 !important;
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid #333333;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}


.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(184, 255, 0, 0.10),
            transparent 35%
        ),
        #080808;
}


.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: 40px;
    right: -180px;

    background:
        radial-gradient(
            circle,
            rgba(184, 255, 0, 0.10) 0%,
            rgba(184, 255, 0, 0.04) 35%,
            transparent 70%
        );

    border-radius: 50%;
    pointer-events: none;

    animation:
        heroGlow 6s ease-in-out infinite;
}


.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: 100px;

    border: 1px solid rgba(184, 255, 0, 0.10);
    border-radius: 50%;

    pointer-events: none;
}


.hero .container {
    position: relative;
    z-index: 2;
}


.hero h1 {
    max-width: 1050px;
    font-size: clamp(52px, 8vw, 100px);
    line-height: 0.98;
    letter-spacing: -4px;
}


.hero h1 span {
    display: block;
    color: #b8ff00;
}


.hero-description {
    max-width: 680px;
    margin-top: 32px;
    color: #a6a6a6;
    font-size: 18px;
    line-height: 1.8;
}


.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 14px 25px;

    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.primary-button {
    background: #b8ff00;
    color: #050505;
    border-color: #b8ff00;
}


.primary-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}


.secondary-button {
    background: transparent;
    border-color: #3a3a3a;
    color: #ffffff;
}


.secondary-button:hover {
    border-color: #b8ff00;
    color: #b8ff00;
    transform: translateY(-3px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;
    gap: 45px;
    margin-top: 55px;
    flex-wrap: wrap;
}


.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.hero-trust-item strong {
    color: #b8ff00;
    font-size: 17px;
}


.hero-trust-item span {
    color: #666666;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #0d0d0d;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 55px;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.service-card {
    position: relative;

    min-height: 270px;
    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0e0e0e
        );

    border: 1px solid #222222;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


.service-card::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    top: -45px;
    right: -45px;

    border-radius: 50%;

    background: rgba(184, 255, 0, 0.07);

    transition:
        width 0.4s ease,
        height 0.4s ease,
        top 0.4s ease,
        right 0.4s ease;
}


.service-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #b8ff00;

    transition: width 0.4s ease;
}


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

    border-color: rgba(184, 255, 0, 0.65);

    background:
        linear-gradient(
            145deg,
            #181818,
            #101010
        );
}


.service-card:hover::before {
    width: 150px;
    height: 150px;

    top: -75px;
    right: -75px;
}


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


.service-number {
    position: relative;
    z-index: 1;

    color: #b8ff00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 55px;
}


.service-card h3 {
    position: relative;
    z-index: 1;

    font-size: 24px;
    line-height: 1.2;

    margin-bottom: 15px;

    transition: color 0.3s ease;
}


.service-card:hover h3 {
    color: #b8ff00;
}


.service-card p {
    position: relative;
    z-index: 1;

    max-width: 320px;

    color: #888888;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   OUR WORK
========================================================= */

.work {
    background: #080808;
}


.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
    margin-bottom: 55px;
}


.work-count {
    min-width: 170px;

    padding:
        20px
        0
        4px
        25px;

    border-left: 1px solid #2a2a2a;
}


.work-count strong {
    display: block;

    color: #b8ff00;

    font-size: 38px;
    line-height: 1;

    margin-bottom: 7px;
}


.work-count span {
    color: #666666;

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
    display: grid;

    grid-template-columns:
        1.45fr
        0.85fr;

    border: 1px solid #222222;

    background: #0d0d0d;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


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

    border-color: #383838;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4);
}


.project-image {
    min-width: 0;
    padding: 28px;

    background: #101010;
}


.project-content {
    min-width: 0;

    padding: 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   BROWSER MOCKUP
========================================================= */

.browser-window {
    width: 100%;

    border: 1px solid #333333;

    background: #0a0a0a;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5);

    overflow: hidden;
}


.browser-bar {
    height: 38px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 0 14px;

    background: #151515;

    border-bottom: 1px solid #292929;
}


.browser-dots {
    display: flex;
    gap: 6px;
}


.browser-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #444444;
}


.browser-address {
    flex: 1;

    height: 22px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    background: #0b0b0b;

    border: 1px solid #292929;

    color: #666666;

    font-size: 10px;
    letter-spacing: 0.5px;

    overflow: hidden;
    white-space: nowrap;
}


.browser-screen {
    overflow: hidden;
    max-height: 390px;
}


.browser-screen img {
    width: 100%;
    height: auto;

    display: block;

    transition:
        transform 0.6s ease;
}


.project-card:hover
.browser-screen img {
    transform: scale(1.02);
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}


.project-category {
    color: #b8ff00;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin: 0;
}


.project-status {
    color: #b8ff00;

    border: 1px solid rgba(184, 255, 0, 0.3);

    padding: 6px 9px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.project-content h3 {
    font-size: clamp(30px, 3.5vw, 48px);

    line-height: 1;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}


.project-description {
    max-width: 470px;

    color: #888888;

    font-size: 15px;

    line-height: 1.8;
}


.project-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.project-tags span {
    padding: 7px 10px;

    border: 1px solid #292929;

    color: #777777;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.project-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 30px;

    padding-top: 22px;

    border-top: 1px solid #202020;
}


.project-details div span {
    display: block;

    color: #555555;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 6px;
}


.project-details div strong {
    color: #dddddd;

    font-size: 12px;
    font-weight: 600;
}


.text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    width: max-content;

    margin-top: 30px;

    color: #b8ff00;

    font-size: 13px;
    font-weight: 800;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}


.text-link:hover {
    gap: 16px;
    color: #ffffff;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    background: #080808;
}


.process h2 {
    max-width: 800px;
}


.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 55px;
}


.process-card {
    min-height: 250px;

    padding: 32px 28px;

    background: #101010;

    border: 1px solid #222222;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.process-card:hover {
    transform: translateY(-6px);

    border-color: #333333;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35);
}


.process-number {
    display: block;

    margin-bottom: 50px;

    color: #b8ff00;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.process-card h3 {
    margin-bottom: 15px;

    font-size: 20px;

    line-height: 1.25;
}


.process-card p {
    color: #888888;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   PRICING
========================================================= */

.pricing {
    background: #0d0d0d;
}


.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 60px;
}


.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 40px;

    background: #111111;

    border: 1px solid #252525;

    border-radius: 2px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.pricing-card:hover {
    transform: translateY(-10px);

    border-color: #666666;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35);
}


.pricing-card.featured {
    border-color: #b8ff00;

    box-shadow:
        0 0 0 1px rgba(184, 255, 0, 0.08),
        0 20px 55px rgba(0, 0, 0, 0.35);
}


.pricing-card.featured:hover {
    border-color: #b8ff00;

    box-shadow:
        0 0 25px rgba(184, 255, 0, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   MOST POPULAR LABEL
========================================================= */

.popular {
    position: absolute;

    top: 0;
    right: 0;

    padding: 9px 16px;

    background: #b8ff00;

    color: #080808;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   PRICING CONTENT
========================================================= */

.pricing-label {
    color: #b8ff00;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.pricing-card h3 {
    font-size: 30px;

    margin-bottom: 15px;
}


.pricing-description {
    color: #777777;

    font-size: 14px;

    line-height: 1.7;

    min-height: 65px;
}


.pricing-price {
    margin: 30px 0;

    color: #999999;

    font-size: 14px;
}


.pricing-price strong {
    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 34px;
}


.pricing-card ul {
    list-style: none;

    border-top: 1px solid #252525;

    padding-top: 25px;

    margin-bottom: 35px;
}


.pricing-card li {
    position: relative;

    color: #999999;

    font-size: 14px;

    margin-bottom: 13px;

    padding-left: 18px;

    transition:
        color 0.25s ease;
}


.pricing-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #b8ff00;

    font-size: 12px;
    font-weight: 800;
}


.pricing-card:hover li {
    color: #bdbdbd;
}


.pricing-card .button {
    width: 100%;

    margin-top: auto;

    text-align: center;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #0d0d0d;
}


.about-content {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;
}


.about-content h2 {
    max-width: 650px;
}


.about-content > div:last-child {
    color: #999999;

    font-size: 17px;

    line-height: 1.8;
}


.about-content p {
    margin-bottom: 25px;
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    background: #080808;
}


.features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 60px;
}


.feature {
    border-top: 1px solid #333333;

    padding-top: 25px;
}


.feature strong {
    color: #b8ff00;

    font-size: 13px;
}


.feature h3 {
    font-size: 21px;

    margin:
        20px 0
        12px;
}


.feature p {
    color: #777777;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    background: #0d0d0d;
}


.faq-list {
    max-width: 900px;

    margin-top: 55px;

    border-top: 1px solid #252525;
}


.faq-item {
    border-bottom: 1px solid #252525;
}


.faq-question {
    width: 100%;

    min-height: 78px;

    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: transparent;

    border: none;

    color: #ffffff;

    text-align: left;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}


.faq-question:hover {
    color: #b8ff00;
}


.faq-icon {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid #333333;

    color: #b8ff00;

    font-size: 20px;
    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.faq-question:hover .faq-icon {
    border-color: #b8ff00;
}


.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);

    background: #b8ff00;

    color: #050505;

    border-color: #b8ff00;
}


.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}


.faq-answer p {
    min-height: 0;

    overflow: hidden;

    color: #888888;

    font-size: 15px;

    line-height: 1.8;

    padding-right: 60px;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        padding-bottom 0.35s ease;
}


.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


.faq-item.active .faq-answer p {
    padding-bottom: 25px;

    opacity: 1;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(184, 255, 0, 0.08),
            transparent 45%
        ),
        #0d0d0d;

    text-align: center;
}


.contact h2 {
    max-width: 850px;

    margin: 0 auto;
}


.contact > .container > .section-description {
    max-width: 600px;

    margin:
        25px auto
        0;
}


/* =========================================================
   CONTACT LAYOUT
========================================================= */

.contact-layout {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 70px;

    margin-top: 60px;

    text-align: left;
}


.contact-info {
    padding-top: 10px;
}


.contact-info h3 {
    font-size: 32px;

    margin-bottom: 15px;
}


.contact-info > p {
    max-width: 350px;

    color: #777777;

    margin-bottom: 45px;
}


.contact-details {
    display: flex;

    flex-direction: column;

    gap: 0;
}


.contact-item {
    margin-bottom: 30px;
}


.contact-item span {
    display: block;

    color: #b8ff00;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 7px;
}


.contact-item a,
.contact-item p {
    color: #ffffff;

    font-size: 14px;

    line-height: 1.6;
}


.contact-item a {
    transition: color 0.3s ease;
}


.contact-item a:hover {
    color: #b8ff00;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    position: relative;

    background: #111111;

    border: 1px solid #252525;

    padding: 40px;
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 20px;
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    color: #dddddd;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 8px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    background: #080808;

    color: #ffffff;

    border: 1px solid #333333;

    padding: 14px;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555555;

    transition:
        opacity 0.3s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b8ff00;

    background: #111111;

    box-shadow:
        0 0 0 3px
        rgba(184, 255, 0, 0.06);

    outline: none;
}


.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.45;
}


.form-group select {
    cursor: pointer;
}


.form-group textarea {
    min-height: 150px;

    resize: vertical;
}


.contact-form .primary-button {
    width: 100%;

    border: 1px solid #b8ff00;

    cursor: pointer;
}


.contact-form button:disabled {
    pointer-events: none;
}


.form-note {
    color: #555555;

    font-size: 11px;

    text-align: center;

    margin-top: 15px;

    line-height: 1.6;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #080808;

    border-top: 1px solid #222222;

    padding: 35px 0;
}


footer .container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}


.footer-brand strong {
    font-size: 18px;

    letter-spacing: 2px;
}


.footer-brand p,
footer .container > p {
    color: #666666;

    font-size: 12px;
}


.footer-brand p {
    margin-top: 4px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    min-width: 120px;
    height: 46px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #b8ff00;

    color: #050505;

    border: 1px solid #b8ff00;

    border-radius: 2px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.floating-whatsapp:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.45);
}


.floating-whatsapp:active {
    transform: translateY(-1px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.active {
    opacity: 1;

    transform:
        translateY(0);
}


.reveal-delay-1 {
    transition-delay: 0.1s;
}


.reveal-delay-2 {
    transition-delay: 0.2s;
}


.reveal-delay-3 {
    transition-delay: 0.3s;
}


/* =========================================================
   HERO GLOW ANIMATION
========================================================= */

@keyframes heroGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 17px;
    }


    .nav-links a {
        font-size: 12px;
    }


    .nav-button {
        padding:
            10px 14px;
    }


    .project-card {
        grid-template-columns:
            1.2fr
            0.8fr;
    }


    .project-content {
        padding: 35px;
    }


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

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 850px) {

    .navbar .container {
        min-height: 78px;
    }


    .menu-toggle {
        display: flex;
    }


    .nav-links {
        position: absolute;

        top: 78px;
        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding:
            10px
            4%
            25px;

        background: #050505;

        border-bottom: 1px solid #222222;

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    .nav-links.active {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .nav-links a {
        width: 100%;

        padding: 15px 0;

        border-bottom: 1px solid #171717;

        font-size: 14px;
    }


    .nav-links a:last-of-type {
        border-bottom: none;
    }


    .nav-links .nav-button {
        display: block;

        margin-top: 15px;

        padding:
            13px 18px;

        text-align: center;

        border:
            1px solid #b8ff00;
    }


    .hero h1 {
        font-size:
            clamp(
                48px,
                8vw,
                76px
            );
    }


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


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


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


    .pricing-card {
        max-width: 650px;

        width: 100%;

        margin: 0 auto;
    }


    .about-content {
        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .contact-layout {
        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .section-heading-row {
        align-items: flex-start;

        flex-direction: column;
    }


    .work-count {
        min-width: 0;

        padding:
            18px
            0
            0
            20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    section {
        padding:
            80px 0;
    }


    .container {
        width: 90%;
    }


    .navbar .container {
        min-height: 70px;
    }


    .logo {
        font-size: 17px;

        letter-spacing: 1.5px;
    }


    .nav-links {
        top: 70px;
    }


    h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .eyebrow {
        font-size: 10px;

        letter-spacing: 2.5px;
    }


    /* HERO */

    .hero {
        min-height:
            calc(100vh - 70px);

        padding:
            75px 0;
    }


    .hero::before {
        width: 380px;
        height: 380px;

        right: -180px;
        top: 80px;
    }


    .hero::after {
        width: 360px;
        height: 360px;

        right: -190px;
        top: 140px;
    }


    .hero h1 {
        font-size: 48px;

        letter-spacing: -2px;

        line-height: 1.02;
    }


    .hero-description {
        font-size: 16px;

        line-height: 1.75;

        margin-top: 25px;
    }


    .hero-buttons {
        flex-direction: column;

        margin-top: 32px;
    }


    .hero-buttons .button {
        width: 100%;

        text-align: center;
    }


    .hero-trust {
        gap: 25px;

        margin-top: 40px;
    }


    /* SERVICES */

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

        gap: 15px;

        margin-top: 40px;
    }


    .service-card {
        min-height: auto;

        padding: 30px;
    }


    .service-number {
        margin-bottom: 35px;
    }


    .service-card h3 {
        font-size: 23px;
    }


    /* WORK */

    .work {
        padding:
            80px 0;
    }


    .section-heading-row {
        margin-bottom: 40px;
    }


    .work-count {
        margin-top: 5px;
    }


    .project-card {
        grid-template-columns:
            1fr;

        margin-top: 0;
    }


    .project-image {
        padding: 18px;

        min-height: 250px;
    }


    .browser-bar {
        height: 32px;

        gap: 12px;

        padding:
            0 10px;
    }


    .browser-dots {
        gap: 4px;
    }


    .browser-dots span {
        width: 6px;
        height: 6px;
    }


    .browser-address {
        height: 20px;

        font-size: 9px;

        padding:
            0 8px;
    }


    .browser-screen {
        max-height: 250px;
    }


    .project-content {
        padding: 30px;
    }


    .project-topline {
        align-items: flex-start;
    }


    .project-category {
        font-size: 9px;

        line-height: 1.5;
    }


    .project-status {
        flex-shrink: 0;
    }


    .project-content h3 {
        font-size: 32px;

        letter-spacing: -1px;
    }


    .project-description {
        font-size: 14px;
    }


    .project-details {
        grid-template-columns:
            1fr;

        gap: 15px;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns:
            1fr;

        gap: 15px;

        margin-top: 40px;
    }


    .process-card {
        min-height: auto;

        padding: 28px;
    }


    .process-number {
        margin-bottom: 35px;
    }


    /* PRICING */

    .pricing-grid {
        margin-top: 40px;
    }


    .pricing-card {
        padding: 30px;
    }


    .pricing-card h3 {
        font-size: 27px;
    }


    .pricing-price strong {
        font-size: 31px;
    }


    /* ABOUT */

    .about-content {
        gap: 35px;
    }


    .about-content > div:last-child {
        font-size: 15px;
    }


    /* WHY US */

    .features-grid {
        grid-template-columns:
            1fr;

        gap: 35px;

        margin-top: 40px;
    }


    /* FAQ */

    .faq-list {
        margin-top: 40px;
    }


    .faq-question {
        min-height: 72px;

        padding:
            20px 0;

        font-size: 14px;

        gap: 15px;
    }


    .faq-icon {
        width: 28px;
        height: 28px;

        font-size: 18px;
    }


    .faq-answer p {
        padding-right: 35px;

        font-size: 14px;
    }


    .faq-item.active .faq-answer p {
        padding-bottom: 22px;
    }


    /* CONTACT */

    .contact-layout {
        margin-top: 45px;

        gap: 40px;
    }


    .contact-info h3 {
        font-size: 28px;
    }


    .contact-details {
        gap: 0;
    }


    .contact-form {
        padding: 25px;
    }


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

        gap: 0;
    }


    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }


    .contact-form button {
        width: 100%;
    }


    /* FOOTER */

    footer .container {
        flex-direction: column;

        align-items: flex-start;
    }


    /* WHATSAPP */

    .floating-whatsapp {
        right: 16px;

        bottom: 16px;

        min-width: 105px;

        height: 42px;

        padding:
            0 14px;

        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .logo {
        font-size: 15px;
    }


    .menu-toggle {
        width: 38px;
        height: 38px;
    }


    .hero h1 {
        font-size: 42px;
    }


    h2 {
        font-size: 34px;
    }


    .service-card,
    .pricing-card,
    .project-content,
    .contact-form {
        padding: 24px;
    }


    .faq-question {
        font-size: 13px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }


    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }


    .hero::before {
        animation: none;
    }

}