/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body { 
    background: #000;
    margin: 0;
    color: #fff;;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.bulb-anchor {
    position: absolute;
    width: 1px;
    height: 1px;

    left: -105px;
    top: -115px;
}

.logo-system {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
}



.title-stage {
    position: relative;
}

.title-group {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.bulb-container {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.letter-c,
.letter-i,
.letter-w,
.letter-d {
    position: absolute;
    transform-origin: center center;
    will-change: transform;
    
}




.tagline {
     margin-top: 2rem;

    color: #40e0d0;

    font-size: 1.75rem;

    opacity: 0;

    text-shadow:
        0 0 5px #40e0d0,
        0 0 10px #40e0d0,
        0 0 20px #40e0d0;

       
}

/* =========================================
   RESPONSIVE SECTION for Hero section
========================================= */

 @media (max-width: 1150px) {

    .title-group {
        display: grid;
        grid-template-columns: max-content max-content;
        justify-content: center;
        align-items: end;
    }

    .word-creativity {
        grid-column: 1;
        grid-row: 1;
    }

    .word-in {
        grid-column: 2;
        grid-row: 1;
    }

    .word-web {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .word-design {
        grid-column: 2;
        grid-row: 2;
    }

}

/* 850px and below */
@media (max-width: 850px) {

    .bulb-anchor {
        left: 50%;
        top: -115px;
    }

    .logo-system {
        padding-top: 140px;
    }

    .title-group {
        margin-top: 2rem;
    }

   .bulb-container {
        transform: translateY(-140px);
    }

    .bulb-anchor {
        left: 50%;
        top: -115px;
        transform: translate(-30px, -60px);
    }


}

@media (max-width: 616px) {

   .title-stage {
    width: 90vw;
    max-width: 500px;
    transform: scale(0.88);
    transform-origin: center;
}

}

@media (max-width: 555px) {

    .title-stage {
        
        transform: scale(0.75);
        transform-origin: center;
    }
    /* .hero {
        padding-left: 20px;
        padding-right: 20px;
       
    } */
    


}

@media (max-width: 485px) {

    .title-stage {
       
       transform-origin: center;
    }
    /* .hero {
        padding-left:10px;
        padding-right: 10px;
        
    } */

     .word-creativity,
    .word-in{
        transform: translateX(55px)
    }
    .word-web, .word-design{
        transform: translateX(-55px)
    }

    .tagline{
        transform: scale(0.75);
         margin-top: .5rem;
    }


} 

@media (max-height: 500px) and (orientation: landscape) {

    .logo-system {
        padding-top: 70px;
    }

    .title-group {
        margin-top: 1rem;
    }

    .bulb-container {
        transform: translateY(10px);
    }

    .bulb-anchor {
        transform: translate(-30px, -70px);
    }

}



/* =========================================
   HEADER / NAVIGATION
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: transparent;

    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(8, 12, 18, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-container {
    width: min(1200px, 92%);
    margin: 0 auto;

    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    color: #fff;
    text-decoration: none;

    font-size: 1.3rem;
    letter-spacing: 0.12em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.primary-nav a {
    color: #fff;
    text-decoration: none;

    font-size: 0.95rem;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: #40e0d0;

    text-shadow:
        0 0 6px rgba(64, 224, 208, 0.7);
}





/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background: #fff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Hamburger changes to X when menu is open */

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 850px) {

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;

        top: calc(100% + 8px);
        right: 4%;
        left: auto;

        width: 200px;
        max-width: 90vw;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: rgba(8, 12, 18, 0.92);
        backdrop-filter: blur(10px);

        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 10px;

        overflow: hidden;

        max-height: 0;
        opacity: 0;

        transform: translateY(-8px);

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .primary-nav.open {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
    }

    .primary-nav a {
        width: 100%;
        padding: 1rem 1.25rem;

        text-align: left;

        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .primary-nav a:first-child {
        border-top: none;
    }
}


/* =========================================
   INTRO SECTION
========================================= */


.intro-section {
    background: #f5f5f2;
    color: #111;
    padding: 100px 20px;
}

.intro-content {
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    color: #159f96;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-content h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 600;
}

.intro-content > p:not(.section-eyebrow) {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.intro-link {
    display: inline-block;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #40e0d0;
    padding-bottom: 4px;
}






/* =========================================
   ORIGINAL ALIGNMENT VALUES
   (Before GSAP Animation)
=========================================


.letter-c {
    position: absolute;
    --start-x: -7px;
    --start-y: 2px;
    transform: translate(var(--start-x), var(--start-y));
}

.letter-i {
    position: absolute;
    --start-x: 334px;
    --start-y: 22px;
    transform: translate(var(--start-x), var(--start-y));
}

.letter-w {
    position: absolute;
    --start-x: 443px;
    --start-y: 15px;
    transform: translate(var(--start-x), var(--start-y));
}

.letter-d {
    position: absolute;
    --start-x: 620px;
    --start-y: 17px;
    transform: translate(var(--start-x), var(--start-y));    
} 


=========================================
   FINAL BULB POSITIONS
=========================================




 .letter-c {
    transform: translate(-105px, -115px) rotate(-270deg);
}
.letter-i {
    transform: translate(-105px, -105px) rotate(-270deg);
}


.letter-w {
    transform: translate(-105px, -40px) rotate(-270deg);
}


.letter-d {
    transform: translate(-105px, 25px) rotate(-270deg);
} */


/* =========================================
   SERVICES PAGE HERO
========================================= */

.services-page-hero {
    background: #0b0f14;
    color: #fff;
    padding: 170px 20px 120px;
}

.services-page-hero-content {
    width: min(1000px, 100%);
    margin: 0 auto;
}

.services-page-hero .section-eyebrow {
    margin-bottom: 1.25rem;
}

.services-page-hero h1 {
    max-width: 850px;
    margin: 0 0 1.75rem;

    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.services-page-hero-intro {
    max-width: 720px;
    margin: 0 0 2.5rem;

    color: #b7bdc4;

    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.75;
}

.services-page-link {
    display: inline-block;

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    border-bottom: 2px solid #40e0d0;
    padding-bottom: 4px;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        text-shadow 0.25s ease;
}

.services-page-link:hover,
.services-page-link:focus-visible {
    color: #40e0d0;

    transform: translateX(4px);

    text-shadow:
        0 0 8px rgba(64, 224, 208, 0.55);
}


/* =========================================
   SERVICE OPTIONS
========================================= */

.service-options-section {
    background: #f5f5f2;
    color: #111;

    padding: 120px 20px;
}

.service-options-content {
    width: min(1100px, 100%);
    margin: 0 auto;
}


/* =========================================
   SERVICE OPTIONS HEADING
========================================= */

.service-options-heading {
    max-width: 850px;
    margin: 0 auto 5.5rem;
    text-align: center;
}

.service-options-heading .section-eyebrow {
    margin-bottom: 1.25rem;
}

.service-options-heading h2 {
    margin: 0;

    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.025em;
}


/* =========================================
   INDIVIDUAL SERVICE
========================================= */

.service-detail {
    display: grid;

    grid-template-columns:
        130px
        minmax(0, 1fr);

    gap: 3rem;

    padding: 4rem 0;

    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.service-detail:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}


/* =========================================
   SERVICE NUMBER
========================================= */

.service-detail-number {
    color: #40e0d0;

    font-size: 1rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-detail-content {
    max-width: 780px;
}

.service-detail-content h3 {
    margin: 0 0 1.25rem;

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    font-weight: 600;
}

.service-detail-content > p {
    margin: 0 0 2rem;

    color: #555;

    font-size: 1.08rem;
    line-height: 1.8;
}


/* =========================================
   SERVICE LIST
========================================= */

.service-detail-content ul {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0.9rem 2.5rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.service-detail-content li {
    position: relative;

    padding-left: 1.4rem;

    color: #333;

    line-height: 1.55;
}

.service-detail-content li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.72em;

    width: 6px;
    height: 6px;

    background: #40e0d0;

    border-radius: 50%;

    transform: translateY(-50%);
}


/* =========================================
   SERVICES HERO / DETAILS - RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .services-page-hero {
        padding:
            150px 20px
            95px;
    }

    .service-options-section {
        padding:
            95px 20px;
    }

    .service-options-heading {
        margin-bottom: 4rem;
    }

    .service-detail {
        grid-template-columns:
            90px
            minmax(0, 1fr);

        gap: 2rem;

        padding: 3.5rem 0;
    }

}


@media (max-width: 650px) {

    .service-detail {
        grid-template-columns: 1fr;

        gap: 1.25rem;
    }

    .service-detail-content ul {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 540px) {

    .services-page-hero {
        padding:
            135px 20px
            80px;
    }

    .services-page-hero h1 {
        font-size:
            clamp(2.8rem, 14vw, 4.2rem);
    }

    .services-page-hero-intro {
        font-size: 1.05rem;
    }

    .service-options-section {
        padding:
            80px 20px;
    }

    .service-options-heading {
        margin-bottom: 3rem;
    }

    .service-detail {
        padding: 3rem 0;
    }

    .service-detail-content h3 {
        font-size:
            clamp(2rem, 10vw, 2.75rem);
    }

    .service-detail-content > p {
        font-size: 1rem;
        line-height: 1.75;
    }

}

/* =========================================
   WEBSITE OPTIONS / STARTING POINTS
========================================= */

.packages-section {
    background: #fff;
    color: #111;

    padding: 120px 20px;
}

.packages-content {
    width: min(1100px, 100%);
    margin: 0 auto;
}


/* =========================================
   PACKAGES HEADING
========================================= */

.packages-heading {
    max-width: 760px;

    margin:
        0 auto
        5rem;

    text-align: center;
}

.packages-heading .section-eyebrow {
    margin-bottom: 1.25rem;
}

.packages-heading h2 {
    margin: 0 0 1.5rem;

    font-size:
        clamp(2.4rem, 5vw, 4.25rem);

    line-height: 1.08;
    font-weight: 600;

    letter-spacing: -0.025em;
}

.packages-heading > p:not(.section-eyebrow) {
    max-width: 650px;

    margin: 0 auto;

    color: #5a5a5a;

    font-size: 1.05rem;
    line-height: 1.75;
}


/* =========================================
   PACKAGES GRID
========================================= */

.packages-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1.5rem;
}


/* =========================================
   PACKAGE CARD
========================================= */

.package-card {
    display: flex;
    flex-direction: column;

    min-height: 100%;

    padding: 2.5rem;

    background: #f5f5f2;

    border:
        1px solid rgba(0, 0, 0, 0.08);

    border-radius: 16px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.package-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(64, 224, 208, 0.45);

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, 0.08);
}


/* =========================================
   PACKAGE TYPE
========================================= */

.package-type {
    margin: 0 0 1rem;

    color: #159f96;

    text-transform: uppercase;
    letter-spacing: 0.14em;

    font-size: 0.78rem;
    font-weight: 700;
}


/* =========================================
   PACKAGE TITLE
========================================= */

.package-card h3 {
    margin: 0 0 1.25rem;

    font-size:
        clamp(1.8rem, 3vw, 2.5rem);

    line-height: 1.15;
    font-weight: 600;
}


/* =========================================
   PACKAGE DESCRIPTION
========================================= */

.package-card > p:not(.package-type) {
    margin: 0 0 1.75rem;

    color: #555;

    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================
   PACKAGE LIST
========================================= */

.package-card ul {
    display: flex;
    flex-direction: column;

    gap: 0.8rem;

    margin:
        0 0
        2rem;

    padding: 0;

    list-style: none;
}

.package-card li {
    position: relative;

    padding-left: 1.35rem;

    color: #333;

    line-height: 1.5;
}

.package-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.72em;

    width: 6px;
    height: 6px;

    background: #40e0d0;

    border-radius: 50%;

    transform: translateY(-50%);
}


/* =========================================
   PACKAGE LINK
========================================= */

.package-link {
    display: inline-block;

    align-self: flex-start;

    margin-top: auto;

    color: #111;
    text-decoration: none;
    font-weight: 600;

    border-bottom:
        2px solid #40e0d0;

    padding-bottom: 4px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.package-link:hover,
.package-link:focus-visible {
    color: #159f96;

    transform:
        translateX(4px);
}


/* =========================================
   WEBSITE OPTIONS - RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .packages-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .package-card:last-child {
        grid-column: 1 / -1;

        max-width: 520px;

        justify-self: center;
    }

}


@media (max-width: 700px) {

    .packages-section {
        padding:
            90px 20px;
    }

    .packages-heading {
        margin-bottom: 3.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card:last-child {
        grid-column: auto;

        max-width: none;
    }

}


@media (max-width: 540px) {

    .packages-section {
        padding:
            80px 20px;
    }

    .packages-heading h2 {
        font-size:
            clamp(2.4rem, 12vw, 3.5rem);
    }

    .package-card {
        padding: 2rem;
    }

}



/* =========================================
   WHAT'S INCLUDED
========================================= */

.included-section {
    background: #0b0f14;
    color: #fff;

    padding: 120px 20px;
}

.included-content {
    width: min(1100px, 100%);
    margin: 0 auto;
}


/* =========================================
   INCLUDED HEADING
========================================= */

.included-heading {
    max-width: 760px;

    margin:
        0 auto
        5rem;

    text-align: center;
}

.included-heading .section-eyebrow {
    margin-bottom: 1.25rem;
}

.included-heading h2 {
    margin: 0;

    font-size:
        clamp(2.4rem, 5vw, 4.25rem);

    line-height: 1.08;
    font-weight: 600;

    letter-spacing: -0.025em;
}


/* =========================================
   INCLUDED GRID
========================================= */

.included-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    border-left:
        1px solid rgba(255, 255, 255, 0.12);
}

.included-item {
    padding: 2.75rem;

    border-right:
        1px solid rgba(255, 255, 255, 0.12);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}


/* =========================================
   INCLUDED ITEM CONTENT
========================================= */

.included-item h3 {
    margin: 0 0 1rem;

    font-size:
        clamp(1.6rem, 3vw, 2.2rem);

    line-height: 1.15;
    font-weight: 600;
}

.included-item p {
    margin: 0;

    color: #b7bdc4;

    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================
   WHAT'S INCLUDED - RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .included-section {
        padding:
            90px 20px;
    }

    .included-heading {
        margin-bottom: 3.5rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 540px) {

    .included-section {
        padding:
            80px 20px;
    }

    .included-heading h2 {
        font-size:
            clamp(2.4rem, 12vw, 3.5rem);
    }

    .included-item {
        padding: 2rem;
    }

}



/* =========================================
   ADDITIONAL SERVICES
========================================= */

.addons-section {
    background: #f5f5f2;
    color: #111;

    padding: 110px 20px;
}

.addons-content {
    width: min(1000px, 100%);
    margin: 0 auto;

    text-align: center;
}


/* =========================================
   ADDITIONAL SERVICES HEADING
========================================= */

.addons-content .section-eyebrow {
    margin-bottom: 1.25rem;
}

.addons-content h2 {
    margin: 0 0 1.5rem;

    font-size:
        clamp(2.4rem, 5vw, 4.25rem);

    line-height: 1.08;
    font-weight: 600;

    letter-spacing: -0.025em;
}

.addons-intro {
    max-width: 650px;

    margin:
        0 auto
        3.5rem;

    color: #555;

    font-size: 1.05rem;
    line-height: 1.75;
}


/* =========================================
   ADDITIONAL SERVICES LIST
========================================= */

.addons-list {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 0.9rem;
}

.addons-list span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        0.8rem
        1.15rem;

    background: #fff;

    border:
        1px solid rgba(0, 0, 0, 0.10);

    border-radius: 999px;

    color: #333;

    font-size: 0.95rem;
    font-weight: 500;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.addons-list span:hover {
    color: #159f96;

    border-color:
        rgba(64, 224, 208, 0.55);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 18px
        rgba(0, 0, 0, 0.06);
}


/* =========================================
   ADDITIONAL SERVICES - RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .addons-section {
        padding:
            90px 20px;
    }

    .addons-intro {
        margin-bottom: 3rem;
    }

}


@media (max-width: 540px) {

    .addons-section {
        padding:
            80px 20px;
    }

    .addons-content h2 {
        font-size:
            clamp(2.4rem, 12vw, 3.5rem);
    }

    .addons-list {
        gap: 0.75rem;
    }

    .addons-list span {
        padding:
            0.75rem
            1rem;

        font-size: 0.9rem;
    }

}

/* =========================================
   FINAL CTA
========================================= */

.services-cta {
    background: #0b0f14;
    color: #fff;

    padding: 120px 20px;
}

.services-cta-content {
    width: min(900px, 100%);
    margin: 0 auto;

    text-align: center;
}


/* =========================================
   FINAL CTA HEADING
========================================= */

.services-cta .section-eyebrow {
    margin-bottom: 1.25rem;
}

.services-cta h2 {
    margin: 0 0 1.5rem;

    font-size:
        clamp(2.7rem, 6vw, 5rem);

    line-height: 1.05;
    font-weight: 600;

    letter-spacing: -0.03em;
}

.services-cta p {
    max-width: 650px;

    margin:
        0 auto
        2.5rem;

    color: #b7bdc4;

    font-size: 1.08rem;
    line-height: 1.75;
}


/* =========================================
   FINAL CTA LINK
========================================= */

.services-cta-link {
    display: inline-block;

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    border-bottom:
        2px solid #40e0d0;

    padding-bottom: 4px;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        text-shadow 0.25s ease;
}

.services-cta-link:hover,
.services-cta-link:focus-visible {
    color: #40e0d0;

    transform:
        translateX(4px);

    text-shadow:
        0 0 8px rgba(64, 224, 208, 0.55);
}


/* =========================================
   FINAL CTA - RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .services-cta {
        padding:
            95px 20px;
    }

}


@media (max-width: 540px) {

    .services-cta {
        padding:
            80px 20px;
    }

    .services-cta h2 {
        font-size:
            clamp(2.6rem, 13vw, 4rem);
    }

    .services-cta p {
        font-size: 1rem;
    }

}

/* =========================================
   SERVICES PAGE FOOTER
========================================= */

.services-footer {
    background: #080c12;
    color: #fff;

    padding: 32px 20px;
}

.services-footer-content {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 3rem;

    padding-top: 1.5rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}


/* =========================================
   FOOTER COPYRIGHT / TAGLINE
========================================= */

.services-footer-copyright {
    margin: 0 0 0.4rem;

    color: #818891;

    font-size: 0.85rem;
}

.services-footer-tagline {
    margin: 0;

    color: #40e0d0;

    font-size: 0.85rem;
}


/* =========================================
   FOOTER NAVIGATION
========================================= */

.services-footer-nav {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 1.5rem;
}

.services-footer-nav a {
    color: #b7bdc4;

    text-decoration: none;

    font-size: 0.9rem;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.services-footer-nav a:hover,
.services-footer-nav a:focus-visible {
    color: #40e0d0;

    text-shadow:
        0 0 6px rgba(64, 224, 208, 0.45);
}


/* =========================================
   SERVICES FOOTER - RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .services-footer-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 1.75rem;
    }

    .services-footer-nav {
        justify-content: flex-start;

        gap: 1rem 1.25rem;
    }

}


@media (max-width: 540px) {

    .services-footer {
        padding:
            28px 20px;
    }

}









/* =========================================
   SERVICES
========================================= */

.services-section {
    background: #fff;
    color: #111;
    padding: 110px 20px;
}

.services-content {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.services-content > .section-eyebrow,
.services-content > h2,
.services-intro {
    text-align: center;
}

.services-content h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.services-intro {
    max-width: 760px;
    margin: 0 auto 4rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;

    padding: 2.5rem;

    background: #f7f7f4;

    border: 1px solid #e8e8e3;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(64, 224, 208, 0.55);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.10);
}

.service-number {
    margin-bottom: 2rem;

    color: #159f96;

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-card h3 {
    margin: 0 0 1rem;

    font-size: 1.4rem;
}

.service-card p {
    margin: 0 0 2rem;

    color: #555;

    line-height: 1.7;
}

.service-link {
    color: #111;

    text-decoration: none;
    font-weight: 600;

    border-bottom: 2px solid #40e0d0;
    padding-bottom: 3px;
}

.service-link:hover,
.service-link:focus-visible {
    color: #159f96;
}




/* =========================================
   SERVICES - RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .service-card {
        padding: 2rem;
    }

}

@media (max-width: 540px) {

    .services-section {
        padding: 80px 20px;
    }

    .services-intro {
        margin-bottom: 3rem;
    }

}

/* =========================================
   FEATURED WORK
========================================= */

.portfolio-section {
    background: #0b0f14;
    color: #fff;
    padding: 120px 20px;
}

.portfolio-content {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.portfolio-content > .section-eyebrow,
.portfolio-content > h2 {
    text-align: center;
}

.portfolio-content h2 {
    margin: 0 0 5rem;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}


/* =========================================
   MAIN PROJECT LAYOUT
========================================= */

.featured-project {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);

    gap: 4rem;

    align-items: center;
}


/* =========================================
   DESKTOP SCREENSHOT
========================================= */

.project-desktop {
    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45);
}

.project-desktop img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================
   PROJECT INFORMATION
========================================= */

.project-type {
    margin: 0 0 0.8rem;

    color: #40e0d0;

    text-transform: uppercase;
    letter-spacing: 0.14em;

    font-size: 0.78rem;
    font-weight: 700;
}

.project-info h3,
.mobile-project-text h3 {
    margin: 0 0 1.25rem;

    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.project-description,
.mobile-project-text p {
    color: #b7bdc4;

    line-height: 1.75;
}

.project-description {
    margin: 0 0 2rem;
}


/* =========================================
   PROJECT TAGS
========================================= */

.project-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 0.65rem;

    margin-bottom: 2rem;
}

.project-tags span {
    padding: 0.5rem 0.8rem;

    border: 1px solid rgba(64, 224, 208, 0.35);
    border-radius: 999px;

    color: #d8ffff;

    font-size: 0.78rem;
}


/* =========================================
   PROJECT LINK
========================================= */

.project-link {
    display: inline-block;

    color: #fff;

    text-decoration: none;
    font-weight: 600;

    border-bottom: 2px solid #40e0d0;

    padding-bottom: 4px;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.project-link:hover,
.project-link:focus-visible {
    color: #40e0d0;

    text-shadow:
        0 0 8px rgba(64, 224, 208, 0.6);
}


/* =========================================
   MOBILE WEBSITE SHOWCASE
========================================= */

.mobile-project {
    grid-column: 1 / -1;

    display: grid;

    grid-template-columns:
        auto minmax(250px, 420px);

    gap: 4rem;

    align-items: center;
    justify-content: center;

    margin-top: 4rem;
}


/* =========================================
   PHONE FRAME
========================================= */

.phone-frame {
    width: 230px;

    padding: 10px;

    background: #111;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    /*
       This variable is also used by the animation
       to calculate exactly how far the screenshot
       needs to travel.
    */
    --phone-screen-height: 460px;

    height: var(--phone-screen-height);

    overflow: hidden;

    background: #fff;

    border-radius: 24px;
}

.phone-screen img {
    display: block;

    width: 100%;
    height: auto;

    animation:
        mobile-scroll 24s ease-in-out infinite;

    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}


/* =========================================
   MOBILE SCREENSHOT ANIMATION
========================================= */

@keyframes mobile-scroll {

    /*
       Pause briefly at the top so the visitor
       can see the mobile hero.
    */
    0%,
    12% {
        transform: translateY(0);
    }

    /*
       Scroll until the bottom of the screenshot
       lines up with the bottom of the phone screen,
       then pause there briefly.
    */
    78%,
    88% {
        transform: translateY(
            calc(-100% + var(--phone-screen-height))
        );
    }

    /*
       Return to the top.
    */
    100% {
        transform: translateY(0);
    }

}


/* =========================================
   REDUCED MOTION ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .phone-screen img {
        animation: none;
    }

}


/* =========================================
   FEATURED WORK - RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .featured-project {
        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .project-info {
        max-width: 700px;
    }

    .mobile-project {
        grid-column: 1;

        margin-top: 2rem;
    }

}


@media (max-width: 700px) {

    .portfolio-section {
        padding: 90px 20px;
    }

    .portfolio-content h2 {
        margin-bottom: 3.5rem;
    }

    .mobile-project {
        grid-template-columns: 1fr;

        gap: 2.5rem;

        justify-items: center;

        text-align: center;
    }

    .mobile-project-text {
        max-width: 500px;
    }

    .phone-frame {
        width: 210px;
    }

    .phone-screen {
        --phone-screen-height: 420px;
    }

}


@media (max-width: 480px) {

    .portfolio-section {
        padding: 75px 18px;
    }

    .phone-frame {
        width: 190px;
    }

    .phone-screen {
        --phone-screen-height: 380px;
    }

}

/* =========================================
   ABOUT
========================================= */

.about-section {
    background: #f5f5f2;
    color: #111;

    padding: 120px 20px;
}

.about-content {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(250px, 0.7fr)
        minmax(400px, 1.3fr);

    gap: 7rem;

    align-items: start;
}


/* =========================================
   ABOUT - LEFT SIDE
========================================= */

.about-heading {
    position: relative;
}

.about-heading .section-eyebrow {
    margin-bottom: 1.5rem;
}

.about-heading h2 {
    margin: 0;

    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;

    font-weight: 600;
}

.about-heading h2 span {
    display: block;

    color: #40e0d0;

    font-weight: 400;
}

.about-line {
    width: 80px;
    height: 3px;

    margin-top: 2rem;

    background: #40e0d0;
}


/* =========================================
   ABOUT - STORY
========================================= */

.about-story {
    max-width: 680px;
}

.about-lead {
    margin: 0 0 2rem;

    color: #111;

    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.45;

    font-weight: 500;
}

.about-story > p:not(.about-lead) {
    margin: 0 0 1.5rem;

    color: #4d4d4d;

    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================================
   ABOUT LINK
========================================= */

.about-link {
    display: inline-block;

    margin-top: 1rem;

    color: #111;

    text-decoration: none;
    font-weight: 600;

    border-bottom: 2px solid #40e0d0;

    padding-bottom: 4px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.about-link:hover,
.about-link:focus-visible {
    color: #159f96;

    transform: translateX(4px);
}


/* =========================================
   ABOUT - RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .about-content {
        grid-template-columns: 1fr;

        gap: 3.5rem;
    }

    .about-heading {
        max-width: 550px;
    }

    .about-story {
        max-width: 700px;
    }

}


@media (max-width: 540px) {

    .about-section {
        padding: 80px 20px;
    }

    .about-content {
        gap: 3rem;
    }

    .about-heading h2 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .about-lead {
        font-size: 1.35rem;
    }

    .about-story > p:not(.about-lead) {
        font-size: 1rem;
        line-height: 1.75;
    }

}


/* =========================================
   FOOTER
========================================= */
/* =========================================
   CONTACT / FOOTER
========================================= */

.site-footer {
    background: #080c12;
    color: #fff;

    padding: 110px 20px 30px;
}

.footer-content {
    width: min(1100px, 100%);
    margin: 0 auto;
}


/* =========================================
   MAIN CONTACT AREA
========================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(350px, 0.85fr);

    gap: 7rem;

    align-items: start;

    padding-bottom: 5rem;
}


/* =========================================
   CONTACT MESSAGE
========================================= */

.footer-message {
    max-width: 620px;
}

.footer-eyebrow {
    margin: 0 0 1rem;

    color: #40e0d0;

    text-transform: uppercase;
    letter-spacing: 0.16em;

    font-size: 0.8rem;
    font-weight: 700;
}

.footer-message h2 {
    margin: 0 0 1.5rem;

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;

    font-weight: 600;
}

.footer-message > p:not(.footer-eyebrow) {
    margin: 0 0 1.5rem;

    color: #b7bdc4;

    font-size: 1.05rem;
    line-height: 1.75;
}


/* =========================================
   EMAIL LINK
========================================= */

.footer-email-text {
    margin-top: 2rem !important;
}

.footer-email-text a {
    color: #fff;

    text-decoration: none;

    border-bottom: 2px solid #40e0d0;

    padding-bottom: 3px;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.footer-email-text a:hover,
.footer-email-text a:focus-visible {
    color: #40e0d0;

    text-shadow:
        0 0 8px rgba(64, 224, 208, 0.55);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 0.55rem;
}

.form-group label {
    color: #d8dde2;

    font-size: 0.9rem;
    font-weight: 500;
}

.optional-field {
    color: #818891;
    font-size: 0.8rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 0.9rem 1rem;

    background: rgba(255, 255, 255, 0.05);

    color: #fff;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    border-radius: 8px;

    font: inherit;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input {
    min-height: 48px;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.07);

    border-color: #40e0d0;

    box-shadow:
        0 0 0 3px rgba(64, 224, 208, 0.10);
}


/* =========================================
   HONEYPOT
========================================= */

/*
   Keep the honeypot in the page for spambots,
   but completely out of sight for real visitors.
*/

.form-honeypot {
    position: absolute;

    left: -9999px;
    top: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================
   FORM STATUS MESSAGE
========================================= */

.form-status {
    display: none;

    padding: 0.9rem 1rem;

    border-radius: 8px;

    font-size: 0.95rem;
    line-height: 1.5;
}


/* We'll use these classes later with JavaScript */

.form-status.success {
    display: block;

    color: #d8ffff;

    background: rgba(64, 224, 208, 0.08);

    border:
        1px solid rgba(64, 224, 208, 0.35);
}

.form-status.error {
    display: block;

    color: #ffd7d7;

    background: rgba(255, 100, 100, 0.08);

    border:
        1px solid rgba(255, 100, 100, 0.30);
}


/* =========================================
   SEND BUTTON
========================================= */

.contact-submit {
    align-self: flex-start;

    margin-top: 0.5rem;

    padding: 0.8rem 0;

    background: transparent;

    color: #fff;

    border: 0;
    border-bottom: 2px solid #40e0d0;

    font: inherit;
    font-weight: 600;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        text-shadow 0.25s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    color: #40e0d0;

    transform: translateX(4px);

    text-shadow:
        0 0 8px rgba(64, 224, 208, 0.55);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}


/* =========================================
   BOTTOM FOOTER
========================================= */

.footer-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 3rem;

    padding-top: 2rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.footer-copyright {
    display: flex;
    flex-direction: column;

    gap: 0.4rem;
}

.footer-copyright p {
    margin: 0;

    color: #818891;

    font-size: 0.85rem;
}

.footer-copyright .footer-tagline {
    color: #40e0d0;
}


/* =========================================
   FOOTER NAVIGATION
========================================= */

.footer-nav {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 1.5rem;
}

.footer-nav a {
    color: #b7bdc4;

    text-decoration: none;

    font-size: 0.9rem;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #40e0d0;

    text-shadow:
        0 0 6px rgba(64, 224, 208, 0.45);
}


/* =========================================
   CONTACT / FOOTER - RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .site-footer {
        padding-top: 90px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 4rem;

        padding-bottom: 4.5rem;
    }

    .footer-message {
        max-width: 700px;
    }

    .contact-form-wrapper {
        max-width: 650px;
    }

}


@media (max-width: 650px) {

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 1.75rem;
    }

    .footer-nav {
        justify-content: flex-start;
    }

}


@media (max-width: 540px) {

    .site-footer {
        padding:
            75px 20px
            25px;
    }

    .footer-message h2 {
        font-size:
            clamp(2.4rem, 12vw, 3.4rem);
    }

    .footer-main {
        gap: 3.5rem;

        padding-bottom: 4rem;
    }

    .footer-nav {
        gap: 1rem 1.25rem;
    }

}
