/*
Theme Name: Merkura Media
Theme URI: https://merkuramedia.com
Author: Merkura Media
Author URI: https://merkuramedia.com
Description: Personal portfolio for Pablo Pimenta / Merkura Media - Creative direction for the new wave
Version: 2.16.0
License: GPL v2 or later
Text Domain: merkura-media
*/

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

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

:root {
    --primary-black: #121212;
    --primary-green: #54F700;
    --white: #ffffff;
    --text-opacity: 0.8;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background-color: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Grain/Noise Texture Overlay - static (no animation) for performance */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.08;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
    background-size: 300px 300px;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -2%); }
    20% { transform: translate(-2%, 1%); }
    30% { transform: translate(1%, -3%); }
    40% { transform: translate(-1%, 3%); }
    50% { transform: translate(-2%, 2%); }
    60% { transform: translate(2%, -1%); }
    70% { transform: translate(-1%, 2%); }
    80% { transform: translate(1%, 3%); }
    90% { transform: translate(-2%, 1%); }
}

/* Subtle Scan Lines Effect - DISABLED for performance */
/*
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: scanlines 10s linear infinite;
}
*/

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================
   HEADER STYLES
   ========================================= */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--primary-black);
    padding: 20px 60px;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-green);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.company-name {
    font-family: 'Amarante', serif;
    font-size: 32px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.company-name:hover {
    text-shadow: 
        0 0 10px rgba(84, 247, 0, 0.8),
        0 0 20px rgba(84, 247, 0, 0.6),
        0 0 30px rgba(84, 247, 0, 0.4),
        0 0 40px rgba(84, 247, 0, 0.2);
    transform: scale(1.05);
    letter-spacing: 3px;
}

/* =========================================
   NAVIGATION
   ========================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navigation > ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-navigation a:hover {
    color: var(--primary-green);
}

/* Dropdown Menu */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.main-navigation .sub-menu,
.main-navigation ul.sub-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: var(--primary-black);
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none !important;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block !important;
    flex-direction: initial !important;
    margin: 0;
    gap: 0 !important;
}

.main-navigation .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-green);
}

.main-navigation .sub-menu li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(84, 247, 0, 0.2);
    transition: all 0.3s ease;
    display: block !important;
    width: 100%;
    margin: 0;
    list-style: none;
}

.main-navigation .sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation .sub-menu li a {
    color: var(--white) !important;
    font-size: 14px;
    display: block !important;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    text-align: left;
    width: 100%;
}

.main-navigation .sub-menu li:hover a {
    background-color: rgba(84, 247, 0, 0.1);
    color: var(--primary-green) !important;
    transform: translateX(5px);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Contact Button in Menu */
.contact-menu-item a {
    padding: 12px 30px !important;
    background-color: transparent;
    color: var(--primary-green) !important;
    border: 2px solid var(--primary-green);
    border-radius: 5px;
}

.contact-menu-item a:hover {
    background-color: var(--primary-green);
    color: var(--primary-black) !important;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    background-color: transparent;
    color: var(--primary-green);
    border-radius: 5px;
}

.btn:hover {
    background-color: var(--primary-green);
    color: var(--primary-black);
}

.btn-cta {
    padding: 18px 45px;
    font-size: 18px;
    letter-spacing: 2px;
    border-width: 3px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(84, 247, 0, 0.3);
    text-shadow: 
        -1px 0 rgba(255, 0, 0, 0.3),
        1px 0 rgba(0, 255, 255, 0.3);
    animation: glitch 0.3s ease;
}

.btn-secondary {
    padding: 18px 45px;
    font-size: 18px;
    letter-spacing: 2px;
    border-width: 3px;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@keyframes glitch {
    0%, 100% { transform: translateY(-2px) translateX(0); }
    25% { transform: translateY(-2px) translateX(-2px); }
    75% { transform: translateY(-2px) translateX(2px); }
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 
        2px 2px 0 rgba(255, 0, 0, 0.05),
        -2px -2px 0 rgba(0, 255, 255, 0.05);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    opacity: var(--text-opacity);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* =========================================
   ANIMATED SECTION DIVIDERS
   ========================================= */

.section-divider {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 40px 0;
}

.dashed-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
    background-image: linear-gradient(
        to right,
        var(--primary-green) 0%,
        var(--primary-green) 35%,
        transparent 35%,
        transparent 50%,
        var(--primary-green) 50%,
        var(--primary-green) 85%,
        transparent 85%,
        transparent 100%
    );
    background-size: 60px 100%;
    background-repeat: repeat-x;
    animation: scrollDashes 3s linear infinite;
}

@keyframes scrollDashes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}

/* Alternative style with gaps */
.section-divider-alt {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 60px 0;
}

.section-divider-alt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 2px;
    transform: translateY(-50%);
    background-image: repeating-linear-gradient(
        90deg,
        var(--primary-green),
        var(--primary-green) 30px,
        transparent 30px,
        transparent 45px
    );
    animation: scrollLine 5s linear infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateX(0) translateY(-50%);
    }
    100% {
        transform: translateX(45px) translateY(-50%);
    }
}

/* Thick dashed version */
.section-divider-thick {
    width: 100%;
    height: 80px;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.section-divider-thick .dashed-line {
    height: 4px;
    background-size: 80px 100%;
    animation: scrollDashes 4s linear infinite;
}

/* =========================================
   SECTIONS SPACING
   ========================================= */

.services-section,
.work-section,
.about-section,
.contact-section {
    padding: 80px 20px;
    min-height: 500px;
    position: relative;
}

.services-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.section-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

/* Modular corner brackets effect */
.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-green);
    opacity: 0.4;
}

.section-title::before {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.section-title::after {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 36px 40px;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

.service-card {
    position: relative;
    width: 100%;
    min-width: 280px;
    max-width: none;
    aspect-ratio: 1 / 1;
    perspective: 1200px;
    transition: transform 0.3s ease;
    grid-column: span 2;
}

.service-card:nth-child(1) {
    grid-column: 1 / span 2;
}

.service-card:nth-child(2) {
    grid-column: 3 / span 2;
}

.service-card:nth-child(3) {
    grid-column: 5 / span 2;
}

.service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-6px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    outline: none;
}

.card-inner:focus-visible {
    box-shadow: 0 0 0 4px rgba(84, 247, 0, 0.45);
}

/* Flipped state — driven by the .flipped class so tap-to-flip works on touch */
.service-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.service-card.flipped .card-front {
    visibility: hidden;
    opacity: 0;
}

.service-card.flipped .card-back {
    visibility: visible;
    opacity: 1;
}

/* Hover/focus flip only on real-pointer devices (stops sticky-hover flips on touch) */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover .card-inner,
    .service-card:focus-within .card-inner {
        transform: rotateY(180deg);
    }

    .service-card:hover .card-front,
    .service-card:focus-within .card-front {
        visibility: hidden;
        opacity: 0;
    }

    .service-card:hover .card-back,
    .service-card:focus-within .card-back {
        visibility: visible;
        opacity: 1;
    }
}

.card-face {
    position: absolute;
    inset: 0;
    border: 3px solid var(--primary-green);
    border-radius: 30px;
    background: linear-gradient(
        to top,
        rgba(84, 247, 0, 0.15) 0%,
        rgba(84, 247, 0, 0.08) 25%,
        rgba(18, 18, 18, 1) 50%,
        var(--primary-black) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 
        0 0 10px rgba(84, 247, 0, 0.1),
        inset 0 0 30px rgba(84, 247, 0, 0.05);
}

.card-front {
    gap: 12px;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.card-back {
    transform: rotateY(180deg);
    gap: 24px;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.service-title {
    font-size: 20px;
    line-height: 1.4;
    text-transform: capitalize;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
}

.service-link {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.service-link:hover,
.service-link:focus-visible {
    color: var(--primary-green);
}

.service-link:focus-visible {
    outline: 2px dashed var(--primary-green);
    outline-offset: 4px;
}

/* =========================================
   WORK/PROJECTS SECTION
   ========================================= */

.work-section {
    padding: 80px 20px;
    min-height: 500px;
}

.work-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.project-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-image-wrapper:hover {
    transform: scale(1.1);
}

.project-image {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image-wrapper:hover .project-image {
    box-shadow: 0 10px 40px rgba(84, 247, 0, 0.3);
}

.project-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.85;
    max-width: 900px;
    margin: 0 auto;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--primary-green);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--white);
}

/* =========================================
   ABOUT/CLIENTS SECTION
   ========================================= */

.about-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.clients-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    border: 3px solid var(--primary-green);
    border-radius: 40px;
    background: rgba(18, 18, 18, 0.5);
    flex-wrap: wrap;
    box-shadow: 
        0 0 20px rgba(84, 247, 0, 0.15),
        inset 0 0 40px rgba(84, 247, 0, 0.05);
}

.client-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo:hover img {
    filter: brightness(1.2);
}

/* Future: When logos become links */
.client-logo a {
    display: block;
    width: 100%;
}

/* =========================================
   WHO WE ARE / CONTACT SECTION
   ========================================= */

.contact-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.9;
    text-align: center;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */

.cta-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.cta-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    position: relative;
    text-shadow: 
        2px 2px 0 rgba(255, 0, 0, 0.05),
        -2px -2px 0 rgba(0, 255, 255, 0.05);
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 20px;
}

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

.services-hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 
        2px 2px 0 rgba(255, 0, 0, 0.05),
        -2px -2px 0 rgba(0, 255, 255, 0.05);
}

.services-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-detail-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* =========================================
   SCROLL INDICATOR
   ========================================= */

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
    transform: rotate(45deg);
}

.scroll-indicator.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

.site-footer {
    background-color: #0a0a0a;
    border-top: 2px solid var(--primary-green);
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-company-name {
    font-family: 'Amarante', serif;
    font-size: 24px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    color: var(--white);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-navigation h4,
.footer-contact h4 {
    color: var(--primary-green);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-menu li {
    margin-bottom: 10px;
}

#footer-menu a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
    transition: all 0.3s ease;
}

#footer-menu a:hover {
    color: var(--primary-green);
    opacity: 1;
}

.footer-email {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--primary-green);
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.social-label {
    letter-spacing: 0.5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(84, 247, 0, 0.2);
    text-align: center;
}

.copyright {
    color: var(--white);
    opacity: 0.6;
    font-size: 13px;
}

/* =========================================
   HEADER SCROLL EFFECTS
   ========================================= */

.site-header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 60px;
    transition: all 0.3s ease;
}

/* =========================================
   MOBILE MENU TOGGLE
   ========================================= */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 768px) {
    .site-header {
        padding: 15px 15px;
    }

    .company-name {
        font-size: 22px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-navigation.active {
        max-height: 100vh;
        border-bottom: 2px solid var(--primary-green);
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-navigation li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(84, 247, 0, 0.1);
    }

    .main-navigation li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }

    .contact-menu-item a {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 1px solid rgba(84, 247, 0, 0.2);
        border-radius: 5px;
        padding: 10px;
        margin: 10px 0;
        width: 100%;
        left: 0;
        box-shadow: none;
    }

    .sub-menu::before {
        display: none;
    }

    .sub-menu li {
        padding: 8px 0;
    }

    .sub-menu li a {
        font-size: 13px;
    }

    .menu-item-has-children > a::after {
        float: right;
    }

    .section-divider,
    .section-divider-alt,
    .section-divider-thick {
        margin: 30px 0;
        height: 40px;
    }

    .dashed-line {
        height: 2px;
        background-size: 40px 100%;
    }

    .section-divider-thick .dashed-line {
        height: 3px;
        background-size: 60px 100%;
    }

    .services-section,
    .work-section,
    .about-section,
    .contact-section {
        padding: 60px 15px;
        min-height: 400px;
    }

    .services-inner {
        gap: 50px;
        padding: 0;
        width: 100%;
    }

    .services-grid {
        padding: 0 5px;
        width: 100%;
        margin: 0 auto;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        justify-items: center;
    }

    .service-card {
        min-width: 0;
        max-width: 280px;
        grid-column: span 1;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    /* Center the lone 5th card across the two-column row */
    .service-card:nth-child(5):last-child {
        grid-column: 1 / -1;
    }

    .card-face {
        padding: 32px 24px;
    }

    .hero-section {
        padding: 90px 15px 60px;
        min-height: calc(100vh - 100px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    .btn-secondary {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        padding: 0 20px;
    }

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

    .scroll-indicator {
        display: none;
    }

    .services-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
        line-height: 1.25;
    }

    .services-hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 10px 50px;
        min-height: calc(100vh - 120px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: 0.5px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 35px;
        padding: 0 5px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        letter-spacing: 1px;
    }

    .btn-secondary {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        letter-spacing: 1px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .company-name {
        font-size: 18px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

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

    .service-card {
        min-width: 0;
        max-width: 260px;
        grid-column: span 1;
    }

    .card-face {
        padding: 28px 22px;
    }

    .services-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .services-hero-subtitle {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================================
   PROCESS / HOW WE CREATE SECTION
   ========================================= */

.process-section {
    padding: 80px 20px;
    min-height: auto;
}

.process-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-inner .section-intro {
    text-align: center;
}

.step-number::before,
.step-number::after {
    display: none;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 20px 0;
    position: relative;
    align-items: center;
}

.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    background: linear-gradient(
        135deg,
        rgba(84, 247, 0, 0.05) 0%,
        rgba(18, 18, 18, 0.8) 50%,
        rgba(84, 247, 0, 0.05) 100%
    );
    box-shadow: 
        0 0 20px rgba(84, 247, 0, 0.2),
        inset 0 0 30px rgba(84, 247, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--primary-green);
    border-left: 2px solid var(--primary-green);
    opacity: 0.6;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary-green);
    border-right: 2px solid var(--primary-green);
    opacity: 0.6;
}

.step-number svg {
    color: var(--primary-green);
    stroke: var(--primary-green);
}

.process-step:hover .step-number {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 
        0 10px 40px rgba(84, 247, 0, 0.4),
        inset 0 0 40px rgba(84, 247, 0, 0.1);
    text-shadow: 
        0 0 10px rgba(84, 247, 0, 0.8),
        0 0 20px rgba(84, 247, 0, 0.4);
}

.step-connector {
    width: 3px;
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: 10px;
    background: linear-gradient(
        to bottom,
        var(--primary-green) 0%,
        var(--primary-green) 40%,
        transparent 40%,
        transparent 60%,
        var(--primary-green) 60%,
        var(--primary-green) 100%
    );
    background-size: 100% 30px;
    background-repeat: repeat-y;
    animation: flowDown 2s linear infinite;
}

@keyframes flowDown {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 30px;
    }
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px 40px;
    border: 2px solid rgba(84, 247, 0, 0.3);
    border-radius: 15px;
    background: rgba(18, 18, 18, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.step-content::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 16px solid rgba(84, 247, 0, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    border-color: var(--primary-green);
    background: rgba(84, 247, 0, 0.05);
    transform: translateX(10px);
    box-shadow: 
        0 10px 30px rgba(84, 247, 0, 0.2),
        inset 0 0 30px rgba(84, 247, 0, 0.05);
}

.process-step:hover .step-content::before {
    border-right-color: var(--primary-green);
    left: -28px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    transition: all 0.3s ease;
}

.process-step:hover .step-title {
    letter-spacing: 3px;
}

.step-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

/* Mobile Responsiveness for Process Section */
@media (max-width: 1024px) {
    .process-step {
        grid-template-columns: 100px 1fr;
        gap: 35px;
    }

    .step-number {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .step-content::before {
        left: -20px;
        border-right-width: 14px;
    }

    .process-step:hover .step-content::before {
        left: -22px;
    }
}

@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }

    .step-number-wrapper {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 32px;
        flex-shrink: 0;
    }

    .step-connector {
        width: 100%;
        height: 3px;
        margin-top: 0;
        margin-left: 10px;
        margin-right: 10px;
        background: linear-gradient(
            to right,
            var(--primary-green) 0%,
            var(--primary-green) 40%,
            transparent 40%,
            transparent 60%,
            var(--primary-green) 60%,
            var(--primary-green) 100%
        );
        background-size: 30px 100%;
        background-repeat: repeat-x;
        animation: flowRight 2s linear infinite;
    }

    @keyframes flowRight {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 30px 0;
        }
    }

    .step-content::before {
        display: none;
    }

    .step-title {
        font-size: 24px;
    }

    .step-description {
        font-size: 15px;
    }

    .process-step:hover .step-content {
        transform: translateX(0) translateY(-5px);
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 15px;
    }

    .process-inner {
        gap: 60px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .step-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

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

    .step-content {
        padding: 25px 20px;
    }
}

/* =========================================
   FORMS
   ========================================= */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(84, 247, 0, 0.3);
    color: var(--white);
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-green);
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
}

input[type="submit"],
button[type="submit"] {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: var(--primary-green);
    color: var(--primary-black);
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.contact-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 
        2px 2px 0 rgba(255, 0, 0, 0.05),
        -2px -2px 0 rgba(0, 255, 255, 0.05);
}

.contact-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.contact-form-section {
    padding: 80px 20px;
    min-height: auto;
}

.contact-form-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(84, 247, 0, 0.3);
    border-radius: 8px;
    color: var(--white);
    padding: 15px 20px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

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

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

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%2354F700" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.form-group select option {
    background-color: var(--primary-black);
    color: var(--white);
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.form-submit button {
    min-width: 250px;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    display: none;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background-color: rgba(84, 247, 0, 0.1);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

.form-message p {
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 20px;
    min-height: auto;
}

.contact-info-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.contact-info-item {
    text-align: center;
    padding: 40px 20px;
    border: 2px solid rgba(84, 247, 0, 0.3);
    border-radius: 20px;
    background: rgba(18, 18, 18, 0.5);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--primary-green);
    background: rgba(84, 247, 0, 0.05);
    transform: translateY(-5px);
}

.contact-info-item h3 {
    color: var(--primary-green);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-info-item p {
    color: var(--white);
    opacity: 0.85;
    font-size: 16px;
    margin: 5px 0;
}

.contact-info-item a {
    color: var(--white);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-green);
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-submit button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        min-height: 60vh;
        padding: 90px 15px 40px;
    }

    .contact-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .contact-hero-subtitle {
        font-size: 14px;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 60px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-info-item {
        padding: 30px 15px;
    }
}

/* =========================================
   WORK PAGE STYLES
   ========================================= */

.work-hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.work-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.work-hero-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 
        2px 2px 0 rgba(255, 0, 0, 0.05),
        -2px -2px 0 rgba(0, 255, 255, 0.05);
}

.work-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.projects-section {
    padding: 80px 20px;
    min-height: auto;
}

.projects-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.projects-inner .section-intro {
    text-align: center;
}

.projects-inner .section-subtitle {
    margin: 0 auto;
}

/* =========================================
   WORK TEASER (Front Page)
   ========================================= */

.work-teaser {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.teaser-card {
    position: relative;
    border: 2px solid rgba(84, 247, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.teaser-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(84, 247, 0, 0.15);
}

.teaser-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.teaser-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
}

.teaser-card-wide {
    overflow: hidden;
}

.teaser-card-wide .site-embed-wrapper {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.teaser-card-wide .site-embed-wrapper:hover {
    transform: none;
    box-shadow: none;
}

.teaser-embed {
    flex: 1;
}

.teaser-embed .site-embed-iframe {
    pointer-events: none;
}

.teaser-label {
    display: block;
    padding: 15px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    border-top: 1px solid rgba(84, 247, 0, 0.2);
    background: rgba(18, 18, 18, 0.8);
}

@media (max-width: 768px) {
    .work-teaser {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .teaser-label {
        font-size: 12px;
        padding: 12px;
    }
}

.project-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin: 0;
}

.project-category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    opacity: 0.6;
    margin: 0;
}

.project-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding: 20px;
    border: 2px solid rgba(84, 247, 0, 0.2);
    border-radius: 15px;
    background: rgba(18, 18, 18, 0.5);
}

.project-detail-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin: 0 0 8px 0;
}

.project-detail-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-gallery .project-image-wrapper {
    width: 100%;
    max-width: 100%;
}

.project-gallery .project-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Instagram Videos Grid within Project Gallery */
.project-gallery.instagram-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instagram-video-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-video-wrapper .instagram-media {
    max-width: 100% !important;
    min-width: 300px !important;
    width: 100% !important;
    margin: 0 auto !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-video-wrapper:hover .instagram-media {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(84, 247, 0, 0.2);
}

/* Mobile Responsiveness for Work Page */
@media (max-width: 1024px) {
    .project-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-info {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .work-hero-title {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .work-hero-subtitle {
        font-size: 16px;
    }

    .project-title {
        font-size: 32px;
    }

    .project-block {
        gap: 30px;
    }

    .projects-inner {
        gap: 60px;
    }

    .project-gallery.instagram-videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .work-hero-section {
        min-height: 60vh;
        padding: 90px 15px 40px;
    }

    .work-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .work-hero-subtitle {
        font-size: 14px;
    }

    .projects-section {
        padding: 60px 15px;
    }

    .project-title {
        font-size: 28px;
    }

    .project-details {
        padding: 20px;
    }

    .project-gallery.instagram-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .instagram-video-wrapper .instagram-media {
        min-width: 280px !important;
    }
}

/* =========================================
   SITE EMBED / BROWSER MOCKUP
   ========================================= */

.site-embed-wrapper {
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-embed-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(84, 247, 0, 0.15);
}

.site-embed-browser-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(84, 247, 0, 0.2);
}

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

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

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.site-embed-iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
    background: #fff;
}

@media (max-width: 768px) {
    .site-embed-iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .site-embed-iframe {
        height: 280px;
    }

    .site-embed-browser-bar {
        padding: 10px 14px;
    }

    .browser-url {
        font-size: 11px;
    }
}

/* =========================================
   SITE GALLERY (multi-image carousel)
   ========================================= */

.site-gallery {
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.site-gallery:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(84, 247, 0, 0.15);
}

.site-gallery:focus-visible {
    box-shadow: 0 0 0 4px rgba(84, 247, 0, 0.4);
}

.site-gallery-viewport {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.site-gallery-track {
    position: relative;
    width: 100%;
}

.site-gallery-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.site-gallery-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.site-gallery-slide img {
    display: block;
    width: 100%;
    height: auto;
}

/* Nav arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.85);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 5;
    opacity: 0;
}

.site-gallery:hover .gallery-nav,
.site-gallery:focus-within .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--primary-green);
    color: var(--primary-black);
    transform: translateY(-50%) scale(1.08);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

/* Dots */
.site-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #1a1a1a;
    border-top: 1px solid rgba(84, 247, 0, 0.2);
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(84, 247, 0, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.gallery-dot:hover {
    background: rgba(84, 247, 0, 0.5);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--primary-green);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 38px;
        height: 38px;
        opacity: 1; /* always show on touch devices */
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-nav {
        width: 34px;
        height: 34px;
    }

    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }

    .site-gallery-dots {
        padding: 12px;
    }

    .gallery-dot {
        width: 8px;
        height: 8px;
    }

    .gallery-dot.active {
        width: 20px;
    }
}

/* =========================================
   VIDEO PLAYER (self-hosted)
   ========================================= */

.video-player {
    position: relative;
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-player:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(84, 247, 0, 0.15);
}

.video-element {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

.video-sound-toggle {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.85);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 5;
    padding: 0;
}

.video-sound-toggle:hover {
    background: var(--primary-green);
    color: var(--primary-black);
    transform: scale(1.08);
}

@media (max-width: 480px) {
    .video-sound-toggle {
        width: 38px;
        height: 38px;
        bottom: 12px;
        right: 12px;
    }

    .video-sound-toggle svg {
        width: 18px;
        height: 18px;
    }
}

/* =========================================
   EMAIL CLIENT MOCKUP
   ========================================= */

.email-mockup {
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.email-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(84, 247, 0, 0.15);
}

.email-mockup-header {
    background: #1a1a1a;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(84, 247, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-mockup-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.email-mockup-label {
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
    font-weight: 600;
    min-width: 55px;
    flex-shrink: 0;
}

.email-mockup-value {
    color: var(--white);
    font-weight: 400;
    word-break: break-word;
}

.email-mockup-value strong {
    font-weight: 600;
    color: var(--white);
}

.email-mockup-subject {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

.email-mockup-preview .email-mockup-value {
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    font-size: 12px;
}

.email-mockup-preview {
    padding-top: 4px;
    border-top: 1px solid rgba(84, 247, 0, 0.1);
    margin-top: 4px;
}

.email-mockup-viewport {
    background: #f4f4f0;
    height: 600px;
    overflow: hidden;
}

.email-mockup-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .email-mockup-viewport {
        height: 500px;
    }

    .email-mockup-header {
        padding: 14px 18px;
    }

    .email-mockup-row {
        font-size: 12px;
    }

    .email-mockup-label {
        min-width: 48px;
        font-size: 10px;
    }

    .email-mockup-subject {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .email-mockup-viewport {
        height: 420px;
    }
}

/* =========================================
   PREVIEW TOGGLE
   ========================================= */

.preview-toggle {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 4px;
    background: rgba(84, 247, 0, 0.08);
    border: 1px solid rgba(84, 247, 0, 0.3);
    border-radius: 10px;
    gap: 4px;
}

.preview-toggle-btn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    opacity: 0.6;
}

.preview-toggle-btn:hover {
    opacity: 1;
    background: rgba(84, 247, 0, 0.1);
}

.preview-toggle-btn.active {
    background: var(--primary-green);
    color: var(--primary-black);
    opacity: 1;
}

@media (max-width: 480px) {
    .preview-toggle-btn {
        padding: 7px 12px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

/* =========================================
   IDENTITY GRID
   ========================================= */

.identity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.identity-card {
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(84, 247, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
}

.identity-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(84, 247, 0, 0.2);
}

.identity-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.identity-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.identity-card:hover .identity-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .identity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .identity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* =========================================
   PROJECT DETAIL OVERLAY
   ========================================= */

.project-overlay {
    display: none;
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.project-overlay.active {
    display: flex;
}

.overlay-content {
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    background: var(--primary-black);
    padding: 40px;
    animation: overlayZoom 0.3s ease;
}

@keyframes overlayZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 5px;
}

.overlay-close:hover {
    color: var(--white);
    transform: scale(1.1);
}

.overlay-body {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.overlay-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overlay-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin: 0;
}

.overlay-category {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    opacity: 0.6;
    margin: 0;
}

.overlay-description {
    font-size: 14px;
    line-height: 1.65;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

.overlay-details {
    display: flex;
    gap: 30px;
    padding: 15px 18px;
    border: 2px solid rgba(84, 247, 0, 0.2);
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.5);
}

.overlay-details .project-detail-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin: 0 0 8px 0;
}

.overlay-details .project-detail-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

.overlay-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.overlay-gallery img {
    max-width: 280px;
    width: 100%;
    border-radius: 15px;
    object-fit: contain;
}

.overlay-gallery img:only-child {
    max-width: 100%;
}

/* Overlay carousel */
.overlay-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.overlay-carousel-track {
    position: relative;
    width: 100%;
}

.overlay-carousel-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.overlay-carousel-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
    object-fit: contain;
}

.overlay-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.85);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 5;
    opacity: 0.85;
}

.overlay-carousel-nav:hover {
    background: var(--primary-green);
    color: var(--primary-black);
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
}

.overlay-carousel-prev {
    left: 12px;
}

.overlay-carousel-next {
    right: 12px;
}

.overlay-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.overlay-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(84, 247, 0, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.overlay-carousel-dot:hover {
    background: rgba(84, 247, 0, 0.5);
    transform: scale(1.2);
}

.overlay-carousel-dot.active {
    background: var(--primary-green);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 480px) {
    .overlay-carousel-nav {
        width: 36px;
        height: 36px;
    }

    .overlay-carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .overlay-carousel-prev {
        left: 8px;
    }

    .overlay-carousel-next {
        right: 8px;
    }

    .overlay-carousel-dot {
        width: 8px;
        height: 8px;
    }

    .overlay-carousel-dot.active {
        width: 20px;
    }
}

@media (max-width: 768px) {
    .project-overlay {
        padding: 20px;
    }

    .overlay-content {
        padding: 30px 25px;
    }

    .overlay-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .overlay-title {
        font-size: 26px;
    }

    .overlay-details {
        flex-direction: column;
        gap: 12px;
    }

    .overlay-gallery img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .overlay-content {
        padding: 25px 20px;
    }

    .overlay-title {
        font-size: 22px;
    }

    .overlay-close {
        top: 15px;
        right: 18px;
        font-size: 30px;
    }
}

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

.about-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin: 0 0 16px 0;
}

.about-detail-section,
.about-focus-section {
    padding: 80px 40px;
}

.about-detail-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-focus-section .section-intro {
    text-align: center;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-story .about-paragraph {
    font-size: 17px;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.85;
    margin: 0;
}

.about-story .about-paragraph strong {
    color: var(--primary-green);
    font-weight: 600;
    opacity: 1;
}

/* Focus grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.focus-item {
    border: 2px solid rgba(84, 247, 0, 0.25);
    border-radius: 15px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: 0 12px 35px rgba(84, 247, 0, 0.12);
}

.focus-title {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin: 0 0 12px 0;
}

.focus-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

/* Languages */
.about-languages {
    margin-top: 50px;
    text-align: center;
}

.languages-heading {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin: 0 0 20px 0;
}

.languages-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.language-pill {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid rgba(84, 247, 0, 0.3);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    background: rgba(84, 247, 0, 0.05);
}

@media (max-width: 768px) {
    .about-detail-section,
    .about-focus-section {
        padding: 60px 24px;
    }

    .about-story .about-paragraph {
        font-size: 15px;
        line-height: 1.7;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .focus-item {
        padding: 22px;
    }
}

/* =========================================
   STATS STRIP
   ========================================= */

.stats-section {
    padding: 70px 40px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px;
    border: 2px solid rgba(84, 247, 0, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: 0 12px 35px rgba(84, 247, 0, 0.12);
}

.stat-number {
    font-family: 'Fugaz One', 'Poppins', sans-serif;
    font-size: 46px;
    line-height: 1;
    color: var(--primary-green);
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--white);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 24px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stat-label {
        font-size: 12px;
    }
}

/* =========================================
   WORK STRIP (auto-scrolling showcase)
   ========================================= */

.work-strip {
    padding: 55px 0;
    overflow: hidden;
    position: relative;
}

.work-strip::before,
.work-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.work-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-black), transparent);
}

.work-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-black), transparent);
}

.work-strip-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: work-strip-scroll 45s linear infinite;
}

.work-strip:hover .work-strip-track {
    animation-play-state: paused;
}

.work-strip-item {
    flex: 0 0 auto;
    width: 300px;
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(84, 247, 0, 0.18);
    display: block;
}

.work-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.work-strip-item:hover img {
    transform: scale(1.06);
}

@keyframes work-strip-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .work-strip {
        padding: 40px 0;
    }
    .work-strip-track {
        gap: 14px;
    }
    .work-strip-item {
        width: 220px;
        height: 140px;
    }
    .work-strip::before,
    .work-strip::after {
        width: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .work-strip-track {
        animation: none;
    }
}

/* About hero headshot */
.about-hero-headshot {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    margin: 0 auto 28px auto;
    border: 3px solid var(--primary-green);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .about-hero-headshot {
        width: 120px;
        height: 120px;
        margin-bottom: 22px;
    }
}

/* Home About Me "more" link */
.about-more-link {
    display: inline-block;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-green);
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.about-more-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.about-more-link:hover {
    opacity: 0.8;
}

.about-more-link:hover .about-more-arrow {
    transform: translateX(4px);
}
