:root {
    /* Color Palette */
    --bg-color: #0a0a0a;
    --bg-secondary: #151515;
    --surface-color: #121212;
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --accent-color: #f43f5e;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Typography - Fluid Sizes */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing & Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max-width: 1200px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 0;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 min(5vw, 2rem);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header Flutuante Adaptável */
header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(95%, var(--container-max-width));
    z-index: 1000;
    padding: 0.8rem clamp(1rem, 3vw, 2.5rem);
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -1px;
}

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

nav ul {
    display: flex;
    gap: clamp(1rem, 2vw, 2.5rem);
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem clamp(1.5rem, 3vw, 2rem);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* Sections & Grids */
.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary-color), #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid,
.portfolio-grid,
.values-grid,
.team-grid,
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
}

.contact-info-grid {
    margin-top: 4rem;
}

/* Cards & Items */
.card,
.team-member,
.portfolio-item {
    background: var(--surface-color);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card {
    padding: clamp(1.5rem, 5vw, 2.5rem);
}

.card:hover,
.portfolio-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.2),
        0 10px 10px -5px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(99, 102, 241, 0.15);
    /* Glow subtil */
}

/* Portfolio Details */
.portfolio-image {
    width: 100%;
    height: 250px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    overflow: hidden;
    /* Garante que a imagem não sai do cartão */
}

.portfolio-image img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-category {
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

/* Team Details */
.team-member {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.member-photo img {
    width: clamp(120px, 15vw, 150px);
    height: clamp(120px, 15vw, 150px);
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

/* Hero Section & Background Animation */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

/* Hero background image and overlay */
.hero {
    background-image: url('assets/hero-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    animation: gridMove 60s linear infinite;
}

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

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

.blob {
    position: absolute;
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    background: var(--primary-color);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    background: var(--primary-color);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    background: var(--accent-color);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 60%;
    background: #4f46e5;
    opacity: 0.1;
    animation-duration: 25s;
}

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

    50% {
        transform: translate(5vw, 5vh) scale(1.1);
    }

    100% {
        transform: translate(-2vw, 2vh) scale(0.9);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

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

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

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

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

/* Footer */
footer {
    padding: 4rem 0;
    background: var(--surface-color);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
}

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

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

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

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    #mobile-menu-btn {
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }

    header nav {
        position: fixed;
        top: 90px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 90%;
        background: var(--surface-color);
        padding: 2.5rem;
        border-radius: 24px;
        border: 1px solid var(--border-color);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    header nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    header nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-btns .btn {
        width: 100%;
    }
}

/* Preloader Premium Parallax */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), box-shadow 1s ease;
    transform-origin: top;
    box-shadow: 0 100px 100px rgba(0, 0, 0, 0.4);
}

#preloader.loaded {
    transform: translateY(-100%);
    pointer-events: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.5s ease;
}

#preloader.loaded .loader-content {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
}

.logo-pulse-wrapper {
    position: relative;
    width: 80px;
    height: auto;
}

.brand-logo-loader {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
    animation: logoPremiumPulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.loader-progress {
    width: 160px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    box-shadow: 0 0 10px #fff;
    animation: loaderPremiumFill 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes logoPremiumPulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
        transform: scale(0.96) translateY(0);
    }

    100% {
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.25));
        transform: scale(1.04) translateY(-2px);
    }
}

@keyframes loaderPremiumFill {
    0% {
        width: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Process Section Enhancements */
.process-card {
    position: relative;
    padding-top: 4rem !important;
    text-align: center;
}

.process-number {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #4b5563;
    /* Cinzento escuro */
    opacity: 0.08;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.process-card:hover .process-number {
    color: var(--primary-color);
    opacity: 0.15;
    transform: translateX(-50%) scale(1.1);
}

.process-card i,
.process-card h4,
.process-card p {
    position: relative;
    z-index: 1;
}

/* Process Grid and Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--surface-color);
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* New Design Enhancements */
/* Fade-in animation */
.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards ease-out;
    animation-delay: 0.2s;
}

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

/* Price label styling */
.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Glassmorphism card effect */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section background variations */
#pacotes {
    background: linear-gradient(135deg, var(--bg-color), var(--surface-color));
    padding: 4rem 0;
}

#cta-final {
    background: linear-gradient(135deg, var(--primary-color), #5b21b6);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

/* Services Page */
.services-page {
    padding-top: 0;
    background:
        radial-gradient(circle at 10% 12%, rgba(99, 102, 241, 0.18), transparent 30rem),
        radial-gradient(circle at 92% 25%, rgba(244, 63, 94, 0.12), transparent 28rem),
        var(--bg-color);
}

.services-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(10rem, 14vw, 12rem) 0 clamp(3rem, 7vw, 6rem);
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
    pointer-events: none;
}

.services-hero-glow {
    position: absolute;
    width: clamp(16rem, 35vw, 30rem);
    height: clamp(16rem, 35vw, 30rem);
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.25;
    pointer-events: none;
}

.services-hero-glow-primary {
    top: 5%;
    left: -8%;
    background: var(--primary-color);
}

.services-hero-glow-accent {
    right: -10%;
    bottom: 8%;
    background: var(--accent-color);
}

.services-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
}

.services-hero-content h1 {
    max-width: 780px;
}

.services-hero-content h1 span,
.section-intro h2 span {
    background: linear-gradient(135deg, #ffffff, #a5b4fc 45%, #fda4af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-content p {
    max-width: 680px;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    height: 50px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    color: #c7d2fe;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-ghost {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.btn-ghost:hover {
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(99, 102, 241, 0.12);
    transform: translateY(-3px);
}

.services-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 680px;
    margin-top: 2.5rem;
}

.services-hero-stats div {
    padding: 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
}

.services-hero-stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 4vw, 2rem);
}

.services-hero-stats span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.services-hero-card,
.maintenance-card,
.final-cta-card,
.mini-service-card {
    border: 1px solid var(--border-color);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.services-hero-card {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.2rem);
    border-radius: 32px;
    overflow: hidden;
}

.services-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.32), transparent 16rem);
    pointer-events: none;
}

.services-hero-card>* {
    position: relative;
    z-index: 1;
}

.hero-card-icon,
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(99, 102, 241, 0.25);
}

.services-hero-card h2 {
    margin: 1.25rem 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.services-hero-card p,
.services-hero-card li {
    color: var(--text-secondary);
}

.services-hero-card ul {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0;
}

.services-hero-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.services-hero-card li i {
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-intro h2 {
    margin-bottom: 1rem;
}

.section-intro p {
    color: var(--text-secondary);
}

.services-section {
    position: relative;
    scroll-margin-top: 8rem;
}

.services-page #pacotes,
.services-page #cta-final {
    background: transparent;
    color: var(--text-primary);
    padding: clamp(4rem, 10vw, 8rem) 0;
    text-align: initial;
}

.packages-grid {
    align-items: stretch;
}

.service-package {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-height: 100%;
}

.service-package h3 {
    font-size: 1.55rem;
}

.service-package p {
    color: var(--text-secondary);
}

.service-package-featured {
    border-color: rgba(99, 102, 241, 0.55);
    background:
        linear-gradient(145deg, rgba(99, 102, 241, 0.22), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.05);
    transform: translateY(-0.75rem);
}

.service-package-featured:hover {
    transform: translateY(-1.25rem) scale(1.02);
}

.featured-ribbon {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.2);
    color: #c7d2fe;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-pill {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
}

.service-feature-list {
    display: grid;
    gap: 0.75rem;
    margin: 0.3rem 0 0.5rem;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.service-feature-list li::before {
    content: "\f00c";
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.1rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.14);
    color: var(--primary-color);
    font-family: "Font Awesome 6 Free";
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1.35rem;
    text-align: center;
}

.service-price {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-price span,
.maintenance-price span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-price strong,
.maintenance-price strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.7rem);
    line-height: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    color: var(--primary-color);
    font-weight: 800;
}

.service-card-link:hover {
    gap: 0.8rem;
    color: #818cf8;
}

.individual-services {
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025)),
        var(--bg-color);
}

.individual-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 1rem;
}

.mini-service-card {
    padding: 1.35rem;
    border-radius: 24px;
    transition: var(--transition);
}

.mini-service-card:hover {
    border-color: rgba(99, 102, 241, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.mini-service-card i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mini-service-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.mini-service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.maintenance-section {
    padding-top: 2rem;
}

.maintenance-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 34px;
}

.maintenance-card h2 {
    margin-bottom: 1rem;
}

.maintenance-card p {
    color: var(--text-secondary);
}

.maintenance-price {
    display: grid;
    gap: 0.8rem;
    justify-items: start;
    white-space: nowrap;
}

.process-section .process-grid {
    position: relative;
}

.process-section .process-step {
    position: relative;
    overflow: hidden;
    padding-top: 4.5rem;
}

.process-section .process-step span {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    color: rgba(99, 102, 241, 0.2);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.process-section .process-step i {
    color: var(--primary-color);
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.process-section .process-step p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.final-services-cta {
    padding-top: 2rem;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 7vw, 4rem);
    border-radius: 38px;
    text-align: center;
}

.final-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(244, 63, 94, 0.35), transparent 20rem),
        radial-gradient(circle at 85% 10%, rgba(99, 102, 241, 0.35), transparent 22rem);
    pointer-events: none;
}

.final-cta-card>* {
    position: relative;
    z-index: 1;
}

.final-cta-card h2 {
    max-width: 760px;
    margin: 0 auto 1rem;
}

.final-cta-card p {
    max-width: 680px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

@media (max-width: 980px) {

    .services-hero-grid,
    .maintenance-card {
        grid-template-columns: 1fr;
    }

    .service-package-featured {
        transform: none;
    }

    .service-package-featured:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .maintenance-price {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .services-page {
        padding-top: 0;
    }

    .services-hero {
        padding-top: 8.5rem;
    }

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

    .services-hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .featured-ribbon {
        position: static;
        width: fit-content;
        margin-bottom: -0.25rem;
    }
}

/* Proteção de Imagens */
/* Audiovisual / esports portfolio sections */
.services-nav-link {
    opacity: 0.68;
}

.portfolio-hero {
    min-height: calc(var(--initial-vh, 1vh) * 100);
    aspect-ratio: auto;
    max-height: none;
    background-image: none;
    background-color: var(--bg-color);
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.portfolio-hero::before {
    background:
        radial-gradient(circle at 50% 45%, rgba(99, 102, 241, 0.14), transparent 34rem),
        radial-gradient(circle at 78% 22%, rgba(244, 63, 94, 0.1), transparent 26rem),
        rgba(0, 0, 0, 0.34);
}

.portfolio-hero .hero-bg {
    z-index: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(99, 102, 241, 0.12), transparent 34rem),
        radial-gradient(circle at 78% 22%, rgba(244, 63, 94, 0.08), transparent 28rem),
        var(--bg-color);
}

.portfolio-hero .hero-bg::before {
    opacity: 0.9;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at 50% 45%, black, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, black, transparent 78%);
}

.portfolio-hero .blob {
    opacity: 0.12;
}

.portfolio-hero h1 span {
    background: linear-gradient(135deg, var(--primary-color), #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.btn-link-subtle {
    color: var(--text-secondary);
    padding-inline: 0.7rem;
}

.btn-link-subtle:hover {
    color: var(--text-primary);
}

.local-services-btn {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.local-services-btn:hover {
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(99, 102, 241, 0.12);
    transform: translateY(-3px);
}

.local-services-btn i {
    color: var(--primary-color);
    font-size: 0.82rem;
}

.work-card p,
.two-column-section p {
    color: var(--text-secondary);
}

.work-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-card h3 {
    font-size: 1.35rem;
}

.work-card small,
.portfolio-info small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.76rem;
    line-height: 1.5;
    opacity: 0.78;
}

.status-pill {
    display: inline-flex;
    width: fit-content;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.28);
    color: #c7d2fe;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-pill-small {
    padding: 0.28rem 0.58rem;
    font-size: 0.62rem;
    letter-spacing: 0.07em;
}

.portfolio-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        var(--surface-color);
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.clean-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.clean-list li {
    display: flex;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.clean-list li::before {
    content: "";
    flex: 0 0 0.45rem;
    width: 0.45rem;
    height: 0.45rem;
    margin-top: 0.6rem;
    border-radius: 999px;
    background: var(--primary-color);
}

.photo-placeholder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1.5rem;
}

.photo-placeholder {
    min-height: 18rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        rgba(255, 255, 255, 0.04);
    background-size: 38px 38px;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.about-portrait {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    background: var(--surface-color);
}

.about-portrait img {
    display: block;
    width: 100%;
    height: min(70vh, 620px);
    object-fit: cover;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-secondary);
}

.contact-links a:hover {
    color: var(--text-primary);
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(99, 102, 241, 0.1);
}

.project-visual {
    background:
        radial-gradient(circle at center, rgba(99, 102, 241, 0.24), transparent 13rem),
        rgba(255, 255, 255, 0.04);
}

.project-visual i {
    font-size: 3rem;
    color: var(--primary-color);
}

.project-visual-broadcast {
    background:
        radial-gradient(circle at center, rgba(244, 63, 94, 0.18), transparent 13rem),
        rgba(255, 255, 255, 0.04);
}

.local-services-page .services-hero {
    padding-bottom: clamp(2rem, 6vw, 4rem);
}

/* Light theme polish for portfolio pages */
@media (max-width: 980px) {

    .two-column-section,
    .photo-placeholder-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        min-height: calc(var(--initial-vh, 1vh) * 100);
        aspect-ratio: auto;
        padding-top: 7.5rem;
        padding-bottom: 3.5rem;
    }

    .portfolio-hero .hero-bg::before {
        background-size: 42px 42px;
        mask-image: radial-gradient(circle at 50% 42%, black, transparent 84%);
        -webkit-mask-image: radial-gradient(circle at 50% 42%, black, transparent 84%);
    }

    .photo-placeholder,
    .about-portrait {
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    header {
        top: 0.75rem;
        width: calc(100% - 1rem);
        padding: 0.7rem 1rem;
    }

    header .brand-logo {
        height: 34px !important;
    }

    .portfolio-hero {
        min-height: calc(var(--initial-vh, 1vh) * 100);
        padding-top: 6.75rem;
        padding-bottom: 2.75rem;
    }

    .portfolio-hero .hero-bg::before {
        background-size: 34px 34px;
        opacity: 0.75;
    }

    .portfolio-hero h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
    }

    .portfolio-hero p {
        font-size: 0.98rem;
        margin-bottom: 1.35rem;
    }

    .portfolio-hero .services-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .hero-btns {
        gap: 0.75rem;
    }

    .hero-btns .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 0.78rem 1rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Promoted portfolio preview layout */
.preview-home .preview-hero {
    text-align: left;
}

.preview-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.preview-hero-copy {
    max-width: 820px;
}

.preview-hero-copy h1 {
    max-width: 780px;
}

.preview-hero-copy p {
    max-width: 620px;
}

.preview-home .hero-btns {
    justify-content: flex-start;
}

.preview-hero-panel {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background:
        radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.22), transparent 14rem),
        rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.preview-hero-panel span,
.preview-work-list span {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.preview-hero-panel ul {
    display: grid;
    gap: 0.9rem;
}

.preview-hero-panel li {
    color: var(--text-secondary);
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-hero-panel li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.preview-section-head {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.preview-section-head .services-eyebrow {
    justify-self: stretch;
    align-self: center;
    margin-bottom: 0;
}

.preview-section-head h2 {
    grid-column: 2;
    max-width: 720px;
    margin-bottom: 0;
}

.preview-section-head .service-card-link {
    grid-column: 2;
    width: fit-content;
    margin-top: -0.75rem;
}

.preview-work-grid {
    --work-preview-card-height: 220px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: stretch;
    gap: 1.5rem;
}

.preview-featured-work,
.preview-work-list,
.preview-project-row,
.preview-work-hero {
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.preview-featured-work {
    display: grid;
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: var(--work-preview-card-height);
}

.preview-featured-work>div:last-child {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: clamp(1.25rem, 3vw, 1.8rem);
}

.preview-featured-work h3 {
    margin-bottom: 0.35rem;
}

.preview-featured-work p {
    line-height: 1.45;
}

.project-meta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.project-date {
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-work-media,
.preview-project-media {
    min-height: auto;
    display: grid;
    place-items: center;
}

.preview-work-list {
    display: grid;
    grid-template-rows: 1fr;
    gap: 0;
    min-height: var(--work-preview-card-height);
}

.preview-work-list article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3.5vw, 2.2rem);
    border-bottom: 1px solid var(--border-color);
}

.preview-work-list article:last-child {
    border-bottom: 0;
}

.preview-work-list p,
.preview-featured-work p,
.preview-project-copy p,
.preview-work-hero p {
    color: var(--text-secondary);
}

.preview-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}

.preview-contact-grid .contact-links {
    justify-content: flex-end;
    margin-top: 0;
}

.preview-work-hero {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding: clamp(2rem, 6vw, 4rem);
    margin-bottom: 2rem;
    text-align: left;
}

.preview-work-hero-copy {
    display: contents;
}

.preview-work-hero .services-eyebrow {
    justify-self: stretch;
    align-self: center;
    margin-bottom: 0;
}

.preview-work-hero h1 {
    max-width: 860px;
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    margin-bottom: 0;
}

.preview-work-hero p {
    max-width: 680px;
    grid-column: 2;
    margin-top: 1.25rem;
}

.preview-project-stack {
    display: grid;
    gap: 1.5rem;
}

.preview-project-row {
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    align-items: stretch;
    transition: var(--transition);
}

.preview-project-row:hover {
    border-color: rgba(99, 102, 241, 0.42);
    transform: translateY(-8px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.26),
        0 0 28px rgba(99, 102, 241, 0.12);
}

.preview-project-copy {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.preview-project-copy small {
    display: block;
    max-width: 640px;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.78rem;
    opacity: 0.78;
}

.preview-photo-row img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.preview-inline-list {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    margin-top: 1.5rem;
}

@media (max-width: 980px) {

    .preview-hero-grid,
    .preview-work-grid,
    .preview-featured-work,
    .preview-contact-grid,
    .preview-project-row,
    .preview-section-head,
    .preview-work-hero {
        grid-template-columns: 1fr;
    }

    .preview-home .hero-btns,
    .preview-contact-grid .contact-links {
        justify-content: flex-start;
    }

    .preview-work-hero .services-eyebrow {
        justify-self: start;
    }

    .preview-work-hero p {
        grid-column: auto;
    }

    .preview-section-head .services-eyebrow,
    .preview-section-head h2,
    .preview-section-head .service-card-link {
        grid-column: auto;
    }

    .preview-section-head .services-eyebrow {
        justify-self: start;
    }

    .preview-section-head .service-card-link {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .preview-home .preview-hero {
        text-align: center;
    }

    .preview-hero-copy p,
    .preview-hero-copy h1,
    .preview-section-head h2,
    .preview-work-hero h1,
    .preview-work-hero p {
        max-width: none;
    }

    .preview-home .hero-btns,
    .preview-contact-grid .contact-links {
        justify-content: center;
    }

    .preview-work-hero {
        text-align: center;
    }

    .preview-work-hero .services-eyebrow {
        justify-self: center;
    }

    .preview-section-head {
        text-align: center;
    }

    .preview-section-head .services-eyebrow,
    .preview-section-head .service-card-link {
        justify-self: center;
    }

    .preview-hero-panel {
        display: none;
    }

    .preview-work-media,
    .preview-project-media,
    .preview-photo-row img {
        min-height: 240px;
    }
}

/* Cinematic experimental homepage */
.cinematic-home {
    --cine-bg: #030406;
    --cine-panel: #090b10;
    --cine-panel-soft: #0d1118;
    --cine-text: #f4f7fb;
    --cine-muted: #9299a6;
    --cine-blue: #0c62ff;
    --cine-blue-soft: rgba(12, 98, 255, 0.18);
    --cine-border: rgba(255, 255, 255, 0.12);
    --cine-border-strong: rgba(255, 255, 255, 0.2);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    background:
        radial-gradient(circle at 72% 18%, rgba(12, 98, 255, 0.16), transparent 22rem),
        linear-gradient(180deg, #030406 0%, #06080c 48%, #030406 100%);
    color: var(--cine-text);
}

.cinematic-home::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        repeating-radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
}

.cine-container {
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
}

header.cine-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1180px);
    z-index: 9999;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80px;
    background: rgba(3, 4, 6, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.cine-nav {
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.25rem;
}

/* Garantir que todos os filhos do nav fiquem verticalmente centrados */
.cine-nav>* {
    align-self: center;
}

.cine-logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.cine-logo img {
    display: block;
    width: 7rem;
    height: auto;
}

.cine-menu {
    justify-self: center;
}

.cine-nav-cta {}

.cine-menu ul {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.cine-menu a {
    position: relative;
    display: inline-flex;
    padding: 0.45rem 0;
    color: rgba(244, 247, 251, 0.66);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cine-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.2rem;
    height: 3px;
    background: var(--cine-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}

.cine-menu a:hover,
.cine-menu a.active {
    color: var(--cine-text);
}

.mobile-cta-item {
    display: none;
}

.cine-menu a:hover::after,
.cine-menu a.active::after {
    transform: scaleX(1);
}

.cine-nav-cta,
.cine-menu-button {
    justify-self: end;
}

.cine-nav-cta {
    color: var(--cine-text);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Estilo do botão 'Falar comigo' com border e animação de contacto on-hover */
.cine-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.42rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    background: transparent;
    color: var(--cine-text);
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
    position: relative;
    overflow: visible;
    z-index: 1;
    align-self: center;
    min-height: 2.6rem;
    line-height: 1;
    margin: 0;
}

.cine-nav-cta:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--cine-blue);
    border-color: rgba(99, 102, 241, 0.36);
}

.cinc-nav-cta-placeholder {}

/* Simple hover animation for .cine-nav-cta (lift + shadow) */
.cine-nav-cta {
    transition: transform 180ms ease, box-shadow 180ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.cine-nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.04);
    color: var(--cine-blue);
    border-color: rgba(99, 102, 241, 0.36);
}

.cine-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cine-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cine-menu-button {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.hamburger-lines {
    width: 24px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background: var(--cine-text);
    transition: transform 0.4s cubic-bezier(0.54, -0.81, 0.57, 0.57), opacity 0.3s ease, background 0.3s ease;
}

.cine-menu-button:hover .line {
    background: var(--cine-blue);
}

.cine-menu-button.is-active .line1 {
    transform: translateY(7px) rotate(45deg);
}

.cine-menu-button.is-active .line2 {
    opacity: 0;
}

.cine-menu-button.is-active .line3 {
    transform: translateY(-7px) rotate(-45deg);
}

.cine-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: calc(var(--initial-vh, 1vh) * 100);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8.4rem 0 7.25rem;
    background: #020305;
}

.cine-hero::before,
.cine-hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.cine-hero::before {
    top: 6.55rem;
    right: 6.5vw;
    width: 7.2rem;
    height: 3px;
    background: var(--cine-blue);
    box-shadow: 0 0 18px rgba(12, 98, 255, 0.55);
}

.cine-hero::after {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.78) 38%, rgba(3, 4, 6, 0.24) 68%, rgba(3, 4, 6, 0.9) 100%),
        linear-gradient(180deg, rgba(3, 4, 6, 0.35) 0%, rgba(3, 4, 6, 0.02) 44%, #030406 100%);
}

.cine-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cine-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    filter: grayscale(1) contrast(1.08) brightness(0.58);
    opacity: 0.68;
}

.cine-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.13), transparent 13rem),
        radial-gradient(circle at 34% 58%, rgba(12, 98, 255, 0.13), transparent 16rem);
    pointer-events: none;
}

.cine-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(90deg, black, transparent 78%);
    -webkit-mask-image: linear-gradient(90deg, black, transparent 78%);
}

.cine-hero-grid {
    position: relative;
    z-index: 4;
    width: min(100% - 2rem, 1180px);
}

.cine-hero-copy {
    width: min(100%, 48rem);
    max-width: calc(100vw - 2rem);
}

.cine-tech-label,
.section-kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 2.1rem;
    color: var(--cine-blue);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cine-tech-label {
    margin-bottom: 1.65rem;
    padding: 0 1.1rem;
}

.cine-tech-label::before,
.cine-tech-label::after {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border-color: rgba(255, 255, 255, 0.7);
}

.cine-tech-label::before {
    left: 0;
    top: 0;
    border-left: 1px solid;
    border-top: 1px solid;
}

.cine-tech-label::after {
    right: 0;
    bottom: 0;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.cine-hero h1 {
    margin: 0;
    color: var(--cine-text);
    font-size: 4.35rem;
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.cine-hero h1 span {
    display: block;
}

.cine-hero h1 .blue-dot {
    display: inline;
    color: var(--cine-blue);
}

.cine-subtitle {
    margin: 1.65rem 0 2rem;
    color: rgba(244, 247, 251, 0.68);
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    max-width: 100%;
}

.cine-hero-actions,
.contact-cine-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.cine-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 2.6rem;
    padding: 0.56rem 0.9rem;
    border: 1px solid var(--cine-border);
    color: var(--cine-text);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, color 220ms ease;
}

.cine-btn::before,
.cine-btn::after {
    content: "";
    position: absolute;
    width: 0.45rem;
    height: 0.45rem;
    opacity: 0.7;
    transition: opacity 220ms ease;
}

.cine-btn::before {
    left: -1px;
    top: -1px;
    border-left: 1px solid var(--cine-text);
    border-top: 1px solid var(--cine-text);
}

.cine-btn::after {
    right: -1px;
    bottom: -1px;
    border-right: 1px solid var(--cine-text);
    border-bottom: 1px solid var(--cine-text);
}

.cine-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(12, 98, 255, 0.7);
    background: rgba(12, 98, 255, 0.12);
}

.cine-btn:hover::before,
.cine-btn:hover::after {
    opacity: 1;
}

.cine-btn-primary {
    border-color: rgba(12, 98, 255, 0.72);
    background: rgba(12, 98, 255, 0.16);
}

.cine-btn-secondary {
    background: rgba(255, 255, 255, 0.035);
}

.cine-hero-footer {
    position: absolute;
    left: 4vw;
    right: 4vw;
    bottom: 2.6rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(244, 247, 251, 0.54);
}

.scroll-indicator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: rgba(244, 247, 251, 0.54);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.scroll-indicator span {
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: inset 0 0 0 0.45rem rgba(255, 255, 255, 0.04);
}

.scroll-indicator span::after {
    content: "";
    display: block;
    width: 0.45rem;
    height: 0.45rem;
    margin: 0.78rem auto;
    border-radius: 50%;
    background: var(--cine-blue);
    box-shadow: 0 0 14px rgba(12, 98, 255, 0.8);
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.hero-socials a {
    color: rgba(244, 247, 251, 0.66);
    font-size: 1.15rem;
}

.hero-socials a:hover {
    color: var(--cine-blue);
    transform: translateY(-3px);
}

.cine-section {
    position: relative;
    padding: 6.5rem 0;
}

.cine-section+.cine-section {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cine-section-head {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.cine-section-head h2,
.about-copy h2,
.local-business-card h2,
.contact-cine-card h2 {
    margin: 0.55rem 0 0;
    color: var(--cine-text);
    font-size: 2.55rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.cine-section-head p {
    max-width: 40rem;
    margin: 1rem auto 0;
    color: var(--cine-muted);
    font-size: 1rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.project-card,
.service-cine-card {
    border: 1px solid var(--cine-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.project-card {
    display: flex;
    flex-direction: column;
    min-height: 34rem;
    overflow: hidden;
}

.project-card:hover,
.service-cine-card:hover {
    transform: translateY(-6px);
    border-color: rgba(12, 98, 255, 0.55);
    background: linear-gradient(180deg, rgba(12, 98, 255, 0.1), rgba(255, 255, 255, 0.025));
}

.project-media {
    position: relative;
    min-height: 18rem;
    background: var(--cine-panel-soft);
    overflow: hidden;
}

.project-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
    filter: grayscale(0.18) contrast(1.08) brightness(0.82);
    transition: transform 500ms ease, filter 500ms ease;
}

.project-card:hover .project-media img {
    transform: scale(1.04);
    filter: grayscale(0) contrast(1.08) brightness(0.9);
}

.project-epf,
.project-web {
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 55% 45%, rgba(12, 98, 255, 0.2), transparent 12rem),
        #080b11;
    background-size: 3rem 3rem, 3rem 3rem, auto, auto;
}

.broadcast-lines {
    width: min(68%, 15rem);
    display: grid;
    gap: 0.65rem;
}

.broadcast-lines span,
.web-line {
    display: block;
    height: 3px;
    background: rgba(244, 247, 251, 0.78);
}

.broadcast-lines span:nth-child(2) {
    width: 70%;
    background: var(--cine-blue);
}

.broadcast-lines span:nth-child(3) {
    width: 46%;
}

.media-corner {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-color: rgba(255, 255, 255, 0.6);
}

.media-corner.top-left {
    top: 1.1rem;
    left: 1.1rem;
    border-top: 1px solid;
    border-left: 1px solid;
}

.media-corner.bottom-right {
    right: 1.1rem;
    bottom: 1.1rem;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.web-frame {
    position: absolute;
    inset: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.web-line {
    position: absolute;
    left: 3.6rem;
    right: 3.6rem;
}

.web-line-one {
    top: 5rem;
    background: var(--cine-blue);
}

.web-line-two {
    top: 7.2rem;
    width: 52%;
}

.web-line-three {
    bottom: 5rem;
    width: 72%;
}

.project-copy {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.45rem;
}

.project-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-topline span,
.project-topline strong {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-topline span {
    color: var(--cine-blue);
}

.project-topline strong {
    flex: 0 0 auto;
    padding: 0.3rem 0.46rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(244, 247, 251, 0.72);
}

.project-copy h3 {
    margin: 0 0 0.7rem;
    color: var(--cine-text);
    font-size: 1.35rem;
    line-height: 1.15;
}

.project-copy p,
.about-text p,
.local-business-card p,
.contact-cine-card p {
    margin: 0;
    color: var(--cine-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.cine-about {
    background:
        linear-gradient(90deg, rgba(12, 98, 255, 0.06), transparent 42%),
        rgba(255, 255, 255, 0.015);
}

.about-grid,
.local-business-card {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.about-text {
    border-left: 1px solid var(--cine-border);
    padding-left: 2rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.35rem;
}

.about-tags span {
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--cine-border);
    color: rgba(244, 247, 251, 0.76);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-cine-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.service-cine-card {
    min-height: 15rem;
    padding: 1.3rem;
}

.service-cine-card span {
    display: block;
    margin-bottom: 2.2rem;
    color: var(--cine-blue);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
}

.service-cine-card h3 {
    margin: 0 0 0.75rem;
    color: var(--cine-text);
    font-size: 1.04rem;
}

.service-cine-card p {
    margin: 0;
    color: var(--cine-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.local-business-section {
    padding-top: 3.5rem;
}

.local-business-card {
    padding: 2.5rem;
    border: 1px solid rgba(12, 98, 255, 0.32);
    background:
        radial-gradient(circle at 10% 10%, rgba(12, 98, 255, 0.15), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.local-business-card .cine-btn {
    margin-top: 1.35rem;
}

.contact-cine-section {
    padding-top: 4.5rem;
}

.contact-cine-card {
    max-width: 55rem;
    margin: 0 auto;
    text-align: center;
}

.contact-cine-card h2 {
    margin-left: auto;
    margin-right: auto;
}

.contact-cine-card p {
    max-width: 35rem;
    margin: 1rem auto 0;
}

.contact-cine-actions {
    justify-content: center;
    margin-top: 2rem;
}

footer.cine-footer {
    padding: 2.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: #030406;
    text-align: left;
}

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

.cine-footer strong {
    color: var(--cine-text);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.cine-footer span {
    color: var(--cine-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 1180px) {
    .cine-hero h1 {
        font-size: 5.05rem;
    }
}

@media (min-width: 1500px) {

    .cine-container,
    .cine-nav,
    .cine-hero-grid {
        width: min(100% - 5rem, 1320px);
    }

    .cine-hero-copy {
        width: min(100%, 54rem);
    }

    .cine-hero h1 {
        font-size: 5.6rem;
    }

    .cine-hero-media img {
        object-position: 68% center;
    }
}

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

    .services-cine-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    header.cine-header {
        padding: 1rem 0;
    }

    .cine-nav {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .cine-logo img {
        width: 6.5rem;
    }

    .cine-nav-cta {
        display: none;
    }

    .cine-menu-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .cine-header .cine-menu {
        position: fixed;
        top: 4.5rem;
        left: auto;
        right: 1rem;
        width: 220px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        background: rgba(5, 7, 11, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-1rem) scale(0.95);
        transform-origin: top right;
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0.4s;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    }

    .cine-header .cine-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .cine-menu ul li {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cine-header .cine-menu.active ul li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .cine-header .cine-menu.active ul li:nth-child(1) { transition-delay: 0.05s; }
    .cine-header .cine-menu.active ul li:nth-child(2) { transition-delay: 0.1s; }
    .cine-header .cine-menu.active ul li:nth-child(3) { transition-delay: 0.15s; }
    .cine-header .cine-menu.active ul li:nth-child(4) { transition-delay: 0.2s; }
    .cine-header .cine-menu.active ul li:nth-child(5) { transition-delay: 0.25s; }

    .cine-menu ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }

    .cine-menu a:not(.cine-btn) {
        width: 100%;
        padding: 0.8rem 0;
        text-align: right;
        font-size: 0.9rem;
    }

    .cine-menu a:not(.cine-btn)::after {
        display: none;
    }

    .mobile-cta-item {
        display: block;
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-cta-item a.cine-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.8rem;
        text-align: center;
    }

    .cine-hero {
        align-items: flex-end;
        min-height: 44rem;
        min-height: 100svh;
        padding-top: 7.25rem;
        padding-bottom: 8.75rem;
    }

    .cine-hero::before {
        top: 5.2rem;
        right: 1rem;
        width: 5rem;
    }

    .cine-hero::after {
        background:
            linear-gradient(180deg, rgba(3, 4, 6, 0.34) 0%, rgba(3, 4, 6, 0.52) 38%, #030406 100%),
            linear-gradient(90deg, rgba(3, 4, 6, 0.94), rgba(3, 4, 6, 0.24));
    }

    .cine-hero-media img {
        object-position: 58% center;
    }

    .cine-hero h1 {
        font-size: 3.1rem;
    }

    .cine-subtitle {
        font-size: 0.78rem;
        line-height: 1.7;
    }

    .cine-hero-footer {
        left: 1rem;
        right: 1rem;
        bottom: 1.4rem;
    }

    .hero-socials {
        gap: 1rem;
    }

    .cine-section {
        padding: 4.5rem 0;
    }

    .cine-section-head h2,
    .about-copy h2,
    .local-business-card h2,
    .contact-cine-card h2 {
        font-size: 2rem;
    }

    .work-grid,
    .about-grid,
    .local-business-card {
        grid-template-columns: 1fr;
    }

    .about-text {
        border-left: 0;
        padding-left: 0;
    }

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

@media (max-width: 560px) {

    .cine-container,
    .cine-nav {
        width: min(100% - 1.25rem, 1180px);
    }

    .cine-hero {
        min-height: 100svh;
        min-height: 44rem;
        padding-top: 6.5rem;
        padding-bottom: 8.25rem;
    }

    .cine-hero::after {
        background:
            linear-gradient(180deg, rgba(3, 4, 6, 0.22) 0%, rgba(3, 4, 6, 0.54) 34%, #030406 100%),
            linear-gradient(90deg, rgba(3, 4, 6, 0.96), rgba(3, 4, 6, 0.42));
    }

    .cine-hero-media img {
        object-position: 63% center;
        filter: grayscale(1) contrast(1.08) brightness(0.5);
    }

    .cine-hero h1 {
        font-size: 2.45rem;
        line-height: 1.02;
    }

    .cine-tech-label {
        font-size: 0.66rem;
        padding: 0 0.8rem;
        margin-bottom: 1.1rem;
    }

    .cine-subtitle {
        margin: 1.2rem 0 1.45rem;
        font-size: 0.72rem;
        line-height: 1.8;
    }

    .cine-hero-actions,
    .contact-cine-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cine-btn {
        width: 100%;
    }

    .cine-hero-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
        bottom: 1.15rem;
    }

    .cine-section {
        padding: 3rem 0;
    }

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

    .project-card {
        min-height: auto;
    }

    .project-media,
    .project-media img {
        min-height: 15.5rem;
    }

    .project-topline {
        flex-direction: column;
        gap: 0.65rem;
    }

    .local-business-card {
        padding: 1.35rem;
    }

    .cine-footer .cine-container {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .cine-hero {
        min-height: 43rem;
        padding-top: 6.1rem;
        padding-bottom: 8rem;
    }

    .cine-hero h1 {
        font-size: 2.12rem;
    }

    .cine-subtitle {
        font-size: 0.68rem;
    }

    .cine-btn {
        min-height: 2.8rem;
        padding: 0.7rem 1rem;
    }
}

@media (max-height: 720px) and (min-width: 821px) {
    .cine-hero {
        min-height: 43rem;
        padding-top: 7rem;
        padding-bottom: 5.5rem;
    }

    .cine-hero h1 {
        font-size: 4rem;
    }

    .cine-hero-footer {
        bottom: 1.5rem;
    }
}

@media (max-height: 680px) and (max-width: 820px) {
    .cine-hero {
        min-height: 42rem;
    }
}

/* Hybrid cinematic homepage: stronger audiovisual identity */
.hybrid-home {
    --cine-bg: #020305;
    --cine-panel: #07090d;
    --cine-panel-soft: #0a0d13;
    --cine-text: #f7f7f4;
    --cine-muted: #a5a8ad;
    --cine-blue: #075fff;
    --cine-blue-soft: rgba(7, 95, 255, 0.2);
    --cine-border: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 74% 18%, rgba(7, 95, 255, 0.13), transparent 23rem),
        radial-gradient(circle at 12% 46%, rgba(255, 255, 255, 0.045), transparent 24rem),
        linear-gradient(180deg, #020305 0%, #07080b 42%, #020305 100%);
}

.hybrid-home::before {
    opacity: 0.28;
}

.hybrid-home header.cine-header {
    background:
        linear-gradient(180deg, rgba(2, 3, 5, 0.96), rgba(2, 3, 5, 0.42));
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.hybrid-home .cine-logo img {
    width: 9rem;
}

.hybrid-home .cine-menu a {
    color: rgba(247, 247, 244, 0.68);
    font-size: 0.78rem;
}

.hybrid-home .cine-menu a::after {
    bottom: -1.25rem;
    height: 3px;
    box-shadow: 0 0 18px rgba(7, 95, 255, 0.75);
}

.hybrid-home .cine-hero {
    min-height: 100svh;
    padding: 8.5rem 0 7.75rem;
    background: #010204;
}

.hybrid-home .cine-hero::before {
    top: 6.7rem;
    right: 7vw;
    width: 8.8rem;
}

.hybrid-home .cine-hero::after {
    background:
        linear-gradient(90deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.78) 37%, rgba(2, 3, 5, 0.18) 67%, rgba(2, 3, 5, 0.88) 100%),
        linear-gradient(180deg, rgba(2, 3, 5, 0.18) 0%, rgba(2, 3, 5, 0.08) 45%, #020305 100%);
}

.hybrid-home .cine-hero-media img {
    object-position: 68% center;
    filter: grayscale(1) contrast(1.2) brightness(0.46);
    opacity: 0.82;
}

.hybrid-home .cine-hero-overlay {
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.16), transparent 14rem),
        radial-gradient(circle at 38% 59%, rgba(7, 95, 255, 0.18), transparent 17rem),
        linear-gradient(180deg, transparent, rgba(2, 3, 5, 0.5));
}

.hybrid-home .cine-grain {
    opacity: 0.13;
    background-size: 4.5rem 4.5rem;
}

.hybrid-home .cine-hero-copy {
    width: min(100%, 53rem);
}

.hybrid-home .cine-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.36fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.hybrid-focus-panel {
    justify-self: end;
    width: min(100%, 18.5rem);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 0%, rgba(99, 102, 241, 0.2), transparent 14rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hybrid-focus-panel span {
    display: block;
    margin-bottom: 1.15rem;
    color: #6f84ff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hybrid-focus-panel ul {
    display: grid;
    gap: 0;
}

.hybrid-focus-panel li {
    padding: 0.82rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(247, 247, 244, 0.66);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.hybrid-focus-panel li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hybrid-home .cine-tech-label {
    margin-bottom: 1.8rem;
    color: #2b78ff;
    font-size: 0.78rem;
}

.hybrid-home .cine-hero h1 {
    font-size: 5.05rem;
    line-height: 0.96;
    font-weight: 900;
    text-shadow:
        0 18px 40px rgba(0, 0, 0, 0.65),
        0 0 1px rgba(255, 255, 255, 0.4);
}

.hybrid-home .blue-dot {
    text-shadow: 0 0 24px rgba(7, 95, 255, 0.9);
}

.hybrid-home .cine-subtitle {
    margin-top: 1.8rem;
    color: rgba(247, 247, 244, 0.72);
    font-size: 0.96rem;
}

.hybrid-home .cine-btn {
    min-height: 3.1rem;
    padding-inline: 1.35rem;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 14% 0%, rgba(99, 102, 241, 0.18), transparent 9rem),
        rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hybrid-home .cine-btn-primary {
    border-color: rgba(99, 102, 241, 0.38);
    background:
        radial-gradient(circle at 14% 0%, rgba(99, 102, 241, 0.26), transparent 9rem),
        rgba(7, 95, 255, 0.13);
    box-shadow:
        0 18px 45px rgba(7, 95, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hybrid-home .cine-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.55);
    background:
        radial-gradient(circle at 14% 0%, rgba(99, 102, 241, 0.32), transparent 9rem),
        rgba(255, 255, 255, 0.07);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(99, 102, 241, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hybrid-home .cine-btn::before,
.hybrid-home .cine-btn::after {
    display: none;
}

.hybrid-home .cine-hero-footer {
    bottom: 2rem;
}

.hybrid-home .cine-section {
    padding: 7.5rem 0;
}

.hybrid-home .cine-section+.cine-section {
    border-top-color: rgba(255, 255, 255, 0.055);
}

.hybrid-home .cine-section-head {
    margin-bottom: 3.5rem;
}

.hybrid-home .section-kicker {
    color: rgba(7, 95, 255, 0.9);
    font-size: 0.72rem;
}

.hybrid-home .cine-section-head h2,
.hybrid-home .about-copy h2,
.hybrid-home .local-business-card h2,
.hybrid-home .contact-cine-card h2 {
    font-size: 3rem;
    font-weight: 900;
}

.hybrid-home .cine-section-head p,
.hybrid-home .project-copy p,
.hybrid-home .about-text p,
.hybrid-home .local-business-card p,
.hybrid-home .contact-cine-card p,
.hybrid-home .service-cine-card p {
    font-size: 1rem;
    color: rgba(247, 247, 244, 0.68);
}

.hybrid-home .work-grid {
    gap: 1.25rem;
}

.hybrid-home .project-card {
    min-height: 38rem;
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hybrid-home .project-card:hover {
    border-color: rgba(7, 95, 255, 0.38);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.32),
        0 0 38px rgba(7, 95, 255, 0.09);
}

.hybrid-home .project-media,
.hybrid-home .project-media img {
    min-height: 22rem;
}

.hybrid-home .project-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 52%, rgba(2, 3, 5, 0.46)),
        radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.06), transparent 15rem);
    pointer-events: none;
}

.hybrid-home .project-epf,
.hybrid-home .project-web {
    background:
        radial-gradient(circle at 50% 48%, rgba(7, 95, 255, 0.22), transparent 13rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent),
        #07090e;
    background-size: auto;
}

.hybrid-home .project-epf::before,
.hybrid-home .project-web::before {
    content: "";
    position: absolute;
    inset: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.hybrid-home .broadcast-lines,
.hybrid-home .web-frame,
.hybrid-home .web-line {
    opacity: 0.72;
}

.hybrid-home .project-copy {
    padding: 1.7rem;
}

.hybrid-home .project-topline {
    margin-bottom: 1.2rem;
}

.hybrid-home .project-topline span {
    font-size: 0.72rem;
    color: #2b78ff;
}

.hybrid-home .project-topline strong {
    border-color: rgba(255, 255, 255, 0.13);
    color: rgba(247, 247, 244, 0.72);
    font-size: 0.68rem;
}

.hybrid-home .project-copy h3 {
    margin-bottom: 0.85rem;
    font-size: 1.62rem;
    font-weight: 900;
}

.hybrid-home .cine-about {
    background:
        radial-gradient(circle at 18% 30%, rgba(7, 95, 255, 0.09), transparent 22rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent);
}

.hybrid-home .about-grid {
    gap: 4rem;
}

.hybrid-home .about-text {
    border-left-color: rgba(7, 95, 255, 0.42);
}

.hybrid-home .about-tags span {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.09);
}

.hybrid-home .services-cine-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.2rem;
}

.hybrid-home .service-cine-card {
    min-height: 18rem;
    padding: 1.55rem;
    border-color: rgba(255, 255, 255, 0.075);
    background: transparent;
}

.hybrid-home .service-cine-card:hover {
    border-color: rgba(7, 95, 255, 0.36);
    background: rgba(255, 255, 255, 0.026);
}

.hybrid-home .service-cine-card span {
    margin-bottom: 3rem;
    color: rgba(7, 95, 255, 0.75);
    font-size: 1.7rem;
}

.hybrid-home .service-cine-card h3 {
    font-size: 1.2rem;
    font-weight: 900;
}

.hybrid-home .local-business-section {
    padding-top: 4.5rem;
}

.hybrid-home .local-business-card {
    padding: 3.4rem;
    border-color: rgba(7, 95, 255, 0.42);
    background:
        linear-gradient(90deg, rgba(7, 95, 255, 0.16), transparent 48%),
        radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.08), transparent 16rem),
        rgba(255, 255, 255, 0.026);
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hybrid-home .contact-cine-card {
    max-width: 62rem;
}

.hybrid-home .contact-cine-actions .cine-btn {
    min-width: 10rem;
}

.hybrid-home footer.cine-footer {
    padding: 2rem 0;
}

.hybrid-home .cine-footer .cine-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.hybrid-home .footer-signature img {
    display: block;
    width: 8rem;
    height: auto;
}

.hybrid-home .footer-mini-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hybrid-home .footer-mini-nav a {
    color: rgba(247, 247, 244, 0.58);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hybrid-home .footer-mini-nav a:hover {
    color: var(--cine-blue);
}

@media (min-width: 1500px) {
    .hybrid-home .cine-hero h1 {
        font-size: 5.9rem;
    }
}

@media (max-width: 1100px) {
    .hybrid-home .cine-hero h1 {
        font-size: 4.35rem;
    }

    .hybrid-home .cine-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.34fr);
    }

    .hybrid-home .services-cine-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .hybrid-home .cine-logo img {
        width: 7.5rem;
    }

    .hybrid-home .cine-hero {
        align-items: center;
        min-height: 100svh;
        min-height: 45rem;
        padding-top: 7rem;
        padding-bottom: 8.7rem;
    }

    .hybrid-home .cine-hero::before {
        top: 5.35rem;
        width: 5.4rem;
    }

    .hybrid-home .cine-hero::after {
        background:
            linear-gradient(180deg, rgba(2, 3, 5, 0.08) 0%, rgba(2, 3, 5, 0.54) 38%, #020305 100%),
            linear-gradient(90deg, rgba(2, 3, 5, 0.96), rgba(2, 3, 5, 0.35));
    }

    .hybrid-home .cine-hero-media img {
        object-position: 62% center;
        filter: grayscale(1) contrast(1.18) brightness(0.48);
    }

    .hybrid-home .cine-hero h1 {
        font-size: 3.15rem;
        line-height: 1;
    }

    .hybrid-home .cine-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .hybrid-focus-panel {
        justify-self: start;
        width: min(100%, 24rem);
        padding: 1.35rem;
        border-radius: 24px;
    }

    .hybrid-focus-panel span {
        margin-bottom: 0.75rem;
        font-size: 0.68rem;
    }

    .hybrid-focus-panel li {
        padding: 0.62rem 0;
        font-size: 0.92rem;
    }

    .hybrid-home .cine-section {
        padding: 5rem 0;
    }

    .hybrid-home .cine-section-head h2,
    .hybrid-home .about-copy h2,
    .hybrid-home .local-business-card h2,
    .hybrid-home .contact-cine-card h2 {
        font-size: 2.2rem;
    }

    .hybrid-home .project-media,
    .hybrid-home .project-media img {
        min-height: 19rem;
    }

    .hybrid-home .services-cine-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hybrid-home .cine-footer .cine-container {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hybrid-home .footer-mini-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .hybrid-home .cine-hero {
        min-height: 58rem;
        padding-top: 6.4rem;
        padding-bottom: 8rem;
    }

    .hybrid-home .cine-hero-media img {
        object-position: 64% center;
        filter: grayscale(1) contrast(1.16) brightness(0.42);
    }

    .hybrid-home .cine-hero h1 {
        font-size: 2.5rem;
    }

    .hybrid-home .cine-subtitle {
        font-size: 0.72rem;
    }

    .hybrid-focus-panel {
        width: 100%;
        padding: 1.15rem;
        border-radius: 22px;
    }

    .hybrid-focus-panel li {
        padding: 0.5rem 0;
    }

    .hybrid-home .cine-section-head h2,
    .hybrid-home .about-copy h2,
    .hybrid-home .local-business-card h2,
    .hybrid-home .contact-cine-card h2 {
        font-size: 1.95rem;
    }

    .hybrid-home .project-card {
        min-height: auto;
    }

    .hybrid-home .project-media,
    .hybrid-home .project-media img {
        min-height: 17rem;
    }

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

    .hybrid-home .service-cine-card {
        min-height: auto;
    }

    .hybrid-home .service-cine-card span {
        margin-bottom: 2rem;
    }

    .hybrid-home .local-business-card {
        padding: 1.55rem;
    }
}

@media (max-width: 390px) {
    .hybrid-home .cine-hero h1 {
        font-size: 2.14rem;
    }

    .hybrid-home .cine-hero {
        min-height: 58rem;
    }
}

/* Hybrid box treatment: original site card aesthetic with cinematic mood */
.hybrid-home .project-card,
.hybrid-home .service-cine-card,
.hybrid-home .local-business-card,
.hybrid-home .contact-cine-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(99, 102, 241, 0.14), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hybrid-home .project-card:hover,
.hybrid-home .service-cine-card:hover,
.hybrid-home .local-business-card:hover,
.hybrid-home .contact-cine-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.42);
    background:
        radial-gradient(circle at 12% 0%, rgba(99, 102, 241, 0.22), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.32),
        0 0 28px rgba(99, 102, 241, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hybrid-home .project-card {
    overflow: hidden;
}

.hybrid-home .project-media {
    margin: 1rem 1rem 0;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hybrid-home .project-media img {
    border-radius: 22px;
}

.hybrid-home .project-epf,
.hybrid-home .project-web {
    background:
        radial-gradient(circle at 50% 45%, rgba(99, 102, 241, 0.26), transparent 13rem),
        radial-gradient(circle at 86% 12%, rgba(7, 95, 255, 0.18), transparent 10rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        #080a10;
}

.hybrid-home .project-copy {
    padding: 1.45rem 1.45rem 1.65rem;
}

.hybrid-home .project-topline strong,
.hybrid-home .about-tags span {
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.24);
    color: #c7d2fe;
}

.hybrid-home .project-topline span {
    color: #a5b4fc;
}

.hybrid-home .service-cine-card {
    border-radius: 28px;
    min-height: 17rem;
}

.hybrid-home .service-cine-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 2.4rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(7, 95, 255, 0.72));
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 16px 34px rgba(99, 102, 241, 0.22);
}

.hybrid-home .local-business-card {
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 0%, rgba(99, 102, 241, 0.2), transparent 20rem),
        radial-gradient(circle at 100% 70%, rgba(7, 95, 255, 0.12), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.hybrid-home .contact-cine-card {
    padding: clamp(2rem, 6vw, 4rem);
    border-radius: 34px;
}

.hybrid-home .contact-cine-card:hover,
.hybrid-home .local-business-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 560px) {
    .hybrid-home .project-media {
        margin: 0.75rem 0.75rem 0;
        border-radius: 20px;
    }

    .hybrid-home .project-media img {
        border-radius: 20px;
    }

    .hybrid-home .project-card,
    .hybrid-home .service-cine-card {
        border-radius: 24px;
    }

    .hybrid-home .local-business-card,
    .hybrid-home .contact-cine-card {
        border-radius: 26px;
    }
}

/* --------------------------------------------------------------------------
   Color theme options for the hybrid homepage

   1. Deep Graphite Blue - active by default
   Dark, cinematic, professional, with clean blue accents.
   --hybrid-bg: #0B0D10;
   --hybrid-bg-2: #10131A;
   --hybrid-surface: #141821;
   --hybrid-text: #F4F4F2;
   --hybrid-muted: #A7ABB3;
   --hybrid-accent: #3B82F6;
   --hybrid-accent-soft: #60A5FA;
   --hybrid-warm: #D6D0C4;

   2. Asphalt & Ice
   More neutral graphite/black with colder blue highlights.
   --hybrid-bg: #090A0D;
   --hybrid-bg-2: #101216;
   --hybrid-surface: #171A20;
   --hybrid-text: #F2F4F7;
   --hybrid-muted: #A1A7B0;
   --hybrid-accent: #2563EB;
   --hybrid-accent-soft: #93C5FD;
   --hybrid-warm: #C9CDD3;

   3. Midnight Studio
   Dark navy/black with slightly warmer off-white text.
   --hybrid-bg: #080B12;
   --hybrid-bg-2: #101626;
   --hybrid-surface: #151C2B;
   --hybrid-text: #F5F1EA;
   --hybrid-muted: #B0AAA2;
   --hybrid-accent: #3B82F6;
   --hybrid-accent-soft: #7DB7FF;
   --hybrid-warm: #D6D0C4;
   -------------------------------------------------------------------------- */

/* Active theme: Deep Graphite Blue */
.hybrid-home {
    --hybrid-bg: #0B0D10;
    --hybrid-bg-2: #10131A;
    --hybrid-surface: #141821;
    --hybrid-surface-soft: #181D27;
    --hybrid-text: #F4F4F2;
    --hybrid-muted: #A7ABB3;
    --hybrid-accent: #3B82F6;
    --hybrid-accent-soft: #60A5FA;
    --hybrid-warm: #D6D0C4;
    --cine-bg: var(--hybrid-bg);
    --cine-panel: var(--hybrid-surface);
    --cine-panel-soft: var(--hybrid-surface-soft);
    --cine-text: var(--hybrid-text);
    --cine-muted: var(--hybrid-muted);
    --cine-blue: var(--hybrid-accent);
    background:
        radial-gradient(circle at 72% 14%, rgba(96, 165, 250, 0.13), transparent 24rem),
        radial-gradient(circle at 14% 42%, rgba(214, 208, 196, 0.055), transparent 25rem),
        linear-gradient(180deg, var(--hybrid-bg) 0%, var(--hybrid-bg-2) 46%, var(--hybrid-bg) 100%);
    color: var(--hybrid-text);
}

.hybrid-home::before {
    opacity: 0.17;
}

.hybrid-home header.cine-header {
    background:
        linear-gradient(180deg, rgba(11, 13, 16, 0.86), rgba(11, 13, 16, 0.42));
    border-bottom-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hybrid-home .cine-menu a,
.hybrid-home .cine-nav-cta {
    color: rgba(244, 244, 242, 0.7);
}

.hybrid-home .cine-menu a:hover,
.hybrid-home .cine-menu a.active,
.hybrid-home .cine-nav-cta:hover {
    color: var(--hybrid-text);
}

.hybrid-home .cine-menu a::after,
.hybrid-home .cine-hero::before {
    background: var(--hybrid-accent);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.45);
}

.hybrid-home .cine-hero {
    background:
        linear-gradient(180deg, var(--hybrid-bg) 0%, var(--hybrid-bg-2) 100%);
}

.hybrid-home .cine-hero::after {
    background:
        linear-gradient(90deg, rgba(11, 13, 16, 0.91) 0%, rgba(11, 13, 16, 0.64) 36%, rgba(11, 13, 16, 0.18) 66%, rgba(11, 13, 16, 0.72) 100%),
        linear-gradient(180deg, rgba(11, 13, 16, 0.08) 0%, rgba(11, 13, 16, 0.1) 45%, var(--hybrid-bg) 100%);
}

.hybrid-home .cine-hero-media img {
    filter: grayscale(0.82) contrast(1.08) brightness(0.6);
    opacity: 0.88;
}

.hybrid-home .cine-hero-overlay {
    background:
        radial-gradient(circle at 70% 30%, rgba(244, 244, 242, 0.13), transparent 14rem),
        radial-gradient(circle at 38% 59%, rgba(96, 165, 250, 0.16), transparent 18rem),
        linear-gradient(180deg, transparent, rgba(11, 13, 16, 0.42));
}

.hybrid-home .cine-tech-label,
.hybrid-home .section-kicker,
.hybrid-home .project-topline span {
    color: var(--hybrid-accent-soft);
}

.hybrid-home .cine-hero h1,
.hybrid-home .cine-section-head h2,
.hybrid-home .about-copy h2,
.hybrid-home .local-business-card h2,
.hybrid-home .contact-cine-card h2,
.hybrid-home .project-copy h3,
.hybrid-home .service-cine-card h3 {
    color: var(--hybrid-text);
}

.hybrid-home .cine-subtitle,
.hybrid-home .cine-section-head p,
.hybrid-home .project-copy p,
.hybrid-home .about-text p,
.hybrid-home .local-business-card p,
.hybrid-home .contact-cine-card p,
.hybrid-home .service-cine-card p,
.hybrid-home .cine-footer span,
.hybrid-home .footer-mini-nav a {
    color: var(--hybrid-muted);
}

.hybrid-home .blue-dot {
    color: var(--hybrid-accent);
    text-shadow: 0 0 22px rgba(59, 130, 246, 0.55);
}

.hybrid-home .project-card,
.hybrid-home .service-cine-card,
.hybrid-home .local-business-card,
.hybrid-home .contact-cine-card,
.hybrid-focus-panel {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 12% 0%, rgba(96, 165, 250, 0.12), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
        var(--hybrid-surface);
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.hybrid-home .project-card:hover,
.hybrid-home .service-cine-card:hover,
.hybrid-home .local-business-card:hover,
.hybrid-home .contact-cine-card:hover {
    border-color: rgba(96, 165, 250, 0.34);
    background:
        radial-gradient(circle at 12% 0%, rgba(96, 165, 250, 0.18), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
        var(--hybrid-surface-soft);
    box-shadow:
        0 26px 66px rgba(0, 0, 0, 0.28),
        0 0 26px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hybrid-home .project-media {
    background: var(--hybrid-surface-soft);
    border-color: rgba(255, 255, 255, 0.09);
}

.hybrid-home .project-media::after {
    background:
        linear-gradient(180deg, transparent 52%, rgba(11, 13, 16, 0.36)),
        radial-gradient(circle at 50% 15%, rgba(244, 244, 242, 0.055), transparent 15rem);
}

.hybrid-home .project-media img {
    filter: grayscale(0.08) contrast(1.04) brightness(0.9);
}

.hybrid-home .project-epf,
.hybrid-home .project-web {
    background:
        radial-gradient(circle at 50% 45%, rgba(96, 165, 250, 0.22), transparent 13rem),
        radial-gradient(circle at 86% 12%, rgba(214, 208, 196, 0.08), transparent 11rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        var(--hybrid-surface);
}

.hybrid-home .project-topline strong,
.hybrid-home .about-tags span {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(96, 165, 250, 0.26);
    color: #D7E8FF;
}

.hybrid-home .service-cine-card span {
    background: linear-gradient(135deg, var(--hybrid-accent), var(--hybrid-accent-soft));
    box-shadow: 0 16px 34px rgba(59, 130, 246, 0.18);
}

.hybrid-home .cine-btn {
    border-color: rgba(255, 255, 255, 0.13);
    background:
        radial-gradient(circle at 14% 0%, rgba(96, 165, 250, 0.14), transparent 9rem),
        rgba(255, 255, 255, 0.055);
    color: var(--hybrid-text);
}

.hybrid-home .cine-btn-primary {
    border-color: rgba(96, 165, 250, 0.42);
    background:
        radial-gradient(circle at 14% 0%, rgba(96, 165, 250, 0.22), transparent 9rem),
        rgba(59, 130, 246, 0.13);
}

.hybrid-home .cine-btn:hover {
    border-color: rgba(96, 165, 250, 0.56);
    background:
        radial-gradient(circle at 14% 0%, rgba(96, 165, 250, 0.26), transparent 9rem),
        rgba(255, 255, 255, 0.075);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.26),
        0 0 22px rgba(59, 130, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hybrid-home .cine-about {
    background:
        radial-gradient(circle at 18% 30%, rgba(96, 165, 250, 0.075), transparent 22rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
}

.hybrid-home .local-business-card {
    background:
        radial-gradient(circle at 8% 0%, rgba(96, 165, 250, 0.16), transparent 20rem),
        radial-gradient(circle at 100% 70%, rgba(214, 208, 196, 0.07), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--hybrid-surface);
}

.hybrid-home footer.cine-footer {
    background: var(--hybrid-bg);
    border-top-color: rgba(255, 255, 255, 0.09);
}

.hybrid-home .footer-mini-nav a:hover,
.hybrid-home .hero-socials a:hover {
    color: var(--hybrid-accent-soft);
}

.hybrid-focus-panel span {
    color: var(--hybrid-accent-soft);
}

.hybrid-focus-panel li {
    color: rgba(244, 244, 242, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.11);
}

@media (max-width: 820px) {
    .hybrid-home .cine-hero::after {
        background:
            linear-gradient(180deg, rgba(11, 13, 16, 0.05) 0%, rgba(11, 13, 16, 0.44) 38%, var(--hybrid-bg) 100%),
            linear-gradient(90deg, rgba(11, 13, 16, 0.9), rgba(11, 13, 16, 0.3));
    }

    .hybrid-home .cine-hero-media img {
        filter: grayscale(0.82) contrast(1.06) brightness(0.55);
    }
}

@media (max-width: 560px) {
    .hybrid-home .cine-hero-media img {
        filter: grayscale(0.82) contrast(1.06) brightness(0.5);
    }
}

/* --------------------------------------------------------------------------
   Studio Cut
   A duplicated design direction: cinematic, warmer graphite, more editorial,
   and cleaner mobile rhythm. This only applies to index-studio.html.
   -------------------------------------------------------------------------- */
.studio-home {
    --studio-bg: #0D1015;
    --studio-bg-deep: #090B0F;
    --studio-surface: #171C25;
    --studio-surface-2: #1B222D;
    --studio-text: #F5F2EC;
    --studio-muted: #ADB2BB;
    --studio-soft: #D8D2C8;
    --studio-blue: #4F8CFF;
    --studio-blue-soft: #7DB2FF;
    background:
        radial-gradient(circle at 78% 10%, rgba(79, 140, 255, 0.15), transparent 26rem),
        radial-gradient(circle at 12% 34%, rgba(216, 210, 200, 0.08), transparent 24rem),
        linear-gradient(180deg, var(--studio-bg) 0%, #111620 45%, var(--studio-bg-deep) 100%);
    color: var(--studio-text);
}

.studio-home::before {
    opacity: 0.13;
}

.studio-home header.cine-header {
    background:
        linear-gradient(180deg, rgba(13, 16, 21, 0.78), rgba(13, 16, 21, 0.34));
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.studio-home .cine-nav {
    width: min(100% - 2.4rem, 1240px);
}

.studio-home .cine-menu a::after {
    background: var(--studio-blue);
    box-shadow: 0 0 16px rgba(79, 140, 255, 0.5);
}

.studio-home .cine-hero {
    min-height: 100svh;
    background:
        linear-gradient(180deg, var(--studio-bg) 0%, #10151D 100%);
}

.studio-home .cine-hero::before {
    width: 10rem;
    background: linear-gradient(90deg, var(--studio-blue), rgba(125, 178, 255, 0.18));
    box-shadow: 0 0 18px rgba(79, 140, 255, 0.38);
}

.studio-home .cine-hero::after {
    background:
        linear-gradient(90deg, rgba(13, 16, 21, 0.88) 0%, rgba(13, 16, 21, 0.58) 34%, rgba(13, 16, 21, 0.12) 64%, rgba(13, 16, 21, 0.6) 100%),
        linear-gradient(180deg, rgba(13, 16, 21, 0.03) 0%, rgba(13, 16, 21, 0.05) 48%, var(--studio-bg) 100%);
}

.studio-home .cine-hero-media img {
    object-position: 67% center;
    filter: grayscale(0.72) contrast(1.05) brightness(0.66) saturate(0.92);
    opacity: 0.94;
}

.studio-home .cine-hero-overlay {
    background:
        radial-gradient(circle at 70% 30%, rgba(245, 242, 236, 0.14), transparent 15rem),
        radial-gradient(circle at 36% 60%, rgba(79, 140, 255, 0.14), transparent 18rem),
        radial-gradient(circle at 20% 12%, rgba(216, 210, 200, 0.08), transparent 14rem);
}

.studio-home .cine-hero-grid {
    width: min(100% - 2.4rem, 1240px);
    grid-template-columns: minmax(0, 1fr) minmax(18.5rem, 0.34fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
}

.studio-home .cine-hero-copy {
    width: min(100%, 55rem);
}

.studio-home .cine-tech-label {
    color: var(--studio-blue-soft);
}

.studio-home .cine-hero h1 {
    color: var(--studio-text);
    font-size: clamp(3.6rem, 7vw, 6.1rem);
    line-height: 0.94;
    text-shadow:
        0 18px 44px rgba(0, 0, 0, 0.5),
        0 0 1px rgba(245, 242, 236, 0.46);
}

.studio-home .blue-dot {
    color: var(--studio-blue);
    text-shadow: 0 0 24px rgba(79, 140, 255, 0.55);
}

.studio-home .cine-subtitle {
    color: rgba(245, 242, 236, 0.72);
}

.studio-home .cine-btn {
    border-color: rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.12), transparent 9rem),
        rgba(255, 255, 255, 0.06);
    color: var(--studio-text);
}

.studio-home .cine-btn-primary {
    border-color: rgba(125, 178, 255, 0.42);
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.22), transparent 9rem),
        rgba(79, 140, 255, 0.14);
}

.studio-home .cine-btn:hover {
    border-color: rgba(125, 178, 255, 0.62);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(79, 140, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.studio-home .hybrid-focus-panel {
    width: min(100%, 20rem);
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 0%, rgba(125, 178, 255, 0.17), transparent 14rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
}

.studio-home .hybrid-focus-panel span {
    color: var(--studio-blue-soft);
}

.studio-home .hybrid-focus-panel li {
    color: rgba(245, 242, 236, 0.72);
}

.studio-home .cine-section {
    padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.studio-home .cine-section:nth-of-type(even) {
    background:
        radial-gradient(circle at 8% 8%, rgba(79, 140, 255, 0.055), transparent 20rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
}

.studio-home .cine-section-head {
    max-width: 50rem;
}

.studio-home .section-kicker {
    color: var(--studio-blue-soft);
}

.studio-home .cine-section-head h2,
.studio-home .about-copy h2,
.studio-home .local-business-card h2,
.studio-home .contact-cine-card h2 {
    color: var(--studio-text);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.studio-home .cine-section-head p,
.studio-home .project-copy p,
.studio-home .about-text p,
.studio-home .local-business-card p,
.studio-home .contact-cine-card p,
.studio-home .service-cine-card p {
    color: var(--studio-muted);
}

.studio-home .work-grid {
    align-items: stretch;
    gap: 1.35rem;
}

.studio-home .project-card,
.studio-home .service-cine-card,
.studio-home .local-business-card,
.studio-home .contact-cine-card {
    border-color: rgba(255, 255, 255, 0.11);
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.1), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.studio-home .project-card:hover,
.studio-home .service-cine-card:hover,
.studio-home .local-business-card:hover,
.studio-home .contact-cine-card:hover {
    border-color: rgba(125, 178, 255, 0.36);
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
        var(--studio-surface-2);
}

.studio-home .project-media {
    min-height: clamp(18rem, 30vw, 24rem);
    background: var(--studio-surface-2);
}

.studio-home .project-media img {
    filter: grayscale(0.04) contrast(1.02) brightness(0.96) saturate(0.95);
}

.studio-home .project-epf,
.studio-home .project-web {
    background:
        radial-gradient(circle at 50% 44%, rgba(125, 178, 255, 0.22), transparent 13rem),
        radial-gradient(circle at 88% 12%, rgba(216, 210, 200, 0.09), transparent 11rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        var(--studio-surface-2);
}

.studio-home .project-copy h3,
.studio-home .service-cine-card h3 {
    color: var(--studio-text);
}

.studio-home .project-topline span {
    color: var(--studio-blue-soft);
}

.studio-home .project-topline strong,
.studio-home .about-tags span {
    background: rgba(79, 140, 255, 0.12);
    border-color: rgba(125, 178, 255, 0.26);
    color: #DAE9FF;
}

.studio-home .about-text {
    border-left-color: rgba(125, 178, 255, 0.34);
}

.studio-home .service-cine-card {
    min-height: 18.5rem;
}

.studio-home .service-cine-card span {
    background: linear-gradient(135deg, var(--studio-blue), var(--studio-blue-soft));
    box-shadow: 0 16px 34px rgba(79, 140, 255, 0.18);
}

.studio-home .local-business-card {
    background:
        radial-gradient(circle at 8% 0%, rgba(125, 178, 255, 0.16), transparent 20rem),
        radial-gradient(circle at 100% 74%, rgba(216, 210, 200, 0.08), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
        var(--studio-surface);
}

.studio-home footer.cine-footer {
    background: var(--studio-bg-deep);
}

.studio-home .footer-mini-nav a,
.studio-home .cine-footer span {
    color: var(--studio-muted);
}

@media (min-width: 980px) {
    .studio-home .work-grid {
        grid-template-columns: 1.15fr 0.92fr 0.92fr;
    }

    .studio-home .project-card:first-child .project-media {
        min-height: clamp(20rem, 34vw, 26rem);
    }
}

@media (max-width: 820px) {
    .studio-home .cine-hero {
        display: block;
        align-items: center;
        min-height: auto;
        padding: 7.5rem 0 6rem;
    }

    .studio-home .cine-hero-grid {
        width: min(100% - 1.25rem, 1240px);
        grid-template-columns: 1fr;
        gap: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .studio-home .cine-hero::after {
        background:
            linear-gradient(180deg, rgba(13, 16, 21, 0.02) 0%, rgba(13, 16, 21, 0.34) 36%, var(--studio-bg) 100%),
            linear-gradient(90deg, rgba(13, 16, 21, 0.86), rgba(13, 16, 21, 0.26));
    }

    .studio-home .cine-hero-media img {
        object-position: 62% center;
        filter: grayscale(0.68) contrast(1.04) brightness(0.6) saturate(0.92);
    }

    .studio-home .cine-hero h1 {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .studio-home .hybrid-focus-panel {
        width: 100%;
        padding: 1rem;
    }

    .studio-home .hybrid-focus-panel ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .studio-home .hybrid-focus-panel li {
        padding: 0.65rem;
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.035);
        font-size: 0.86rem;
    }

    .studio-home .hybrid-focus-panel li:last-child {
        padding-bottom: 0.65rem;
    }
}

@media (max-width: 560px) {
    .studio-home .cine-hero {
        padding-top: 6.5rem;
        padding-bottom: 4.5rem;
    }

    .studio-home .cine-hero-footer {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: min(100% - 1.25rem, 1240px);
        margin: 1.5rem auto 0;
    }

    .studio-home .cine-hero-actions,
    .studio-home .contact-cine-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .studio-home .hybrid-focus-panel ul {
        grid-template-columns: 1fr;
    }

    .studio-home .project-media,
    .studio-home .project-media img {
        min-height: 16rem;
    }
}

/* Official shared styling for internal PHP pages */
.studio-subpage {
    background:
        radial-gradient(circle at 78% 10%, rgba(79, 140, 255, 0.15), transparent 26rem),
        radial-gradient(circle at 12% 34%, rgba(216, 210, 200, 0.08), transparent 24rem),
        linear-gradient(180deg, var(--studio-bg) 0%, #111620 45%, var(--studio-bg-deep) 100%);
    color: var(--studio-text);
}

.studio-subpage main {
    min-height: 70vh;
}

.studio-subpage .container {
    max-width: 1180px;
}

.studio-subpage .section {
    position: relative;
}

.studio-subpage .section[style*="background"],
.studio-subpage .portfolio-band,
.studio-subpage .individual-services {
    background:
        radial-gradient(circle at 8% 8%, rgba(79, 140, 255, 0.055), transparent 20rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)) !important;
}

.studio-subpage .services-eyebrow,
.studio-subpage .portfolio-category,
.studio-subpage .section-kicker {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--studio-blue-soft);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.studio-subpage h1,
.studio-subpage h2,
.studio-subpage h3,
.studio-subpage h4 {
    color: var(--studio-text);
}

.studio-subpage p,
.studio-subpage li,
.studio-subpage .legal-content,
.studio-subpage .preview-project-copy p,
.studio-subpage .preview-work-hero p,
.studio-subpage .section-intro p {
    color: var(--studio-muted) !important;
}

.studio-subpage strong {
    color: var(--studio-text);
}

.studio-subpage .btn,
.studio-subpage .service-card-link,
.studio-subpage .contact-links a {
    border-radius: 999px;
}

.studio-subpage .btn,
.studio-subpage .btn-primary,
.studio-subpage .btn-ghost,
.studio-subpage .local-services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.12), transparent 9rem),
        rgba(255, 255, 255, 0.06);
    color: var(--studio-text);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.studio-subpage .btn-primary {
    border-color: rgba(125, 178, 255, 0.42);
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.22), transparent 9rem),
        rgba(79, 140, 255, 0.14);
}

.studio-subpage .btn:hover,
.studio-subpage .contact-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 178, 255, 0.56);
    color: var(--studio-text);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(79, 140, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.studio-subpage .card,
.studio-subpage .preview-work-hero,
.studio-subpage .preview-project-row,
.studio-subpage .preview-featured-work,
.studio-subpage .preview-work-list,
.studio-subpage .contact-container,
.studio-subpage .contact-info-grid>div,
.studio-subpage .services-hero-card,
.studio-subpage .mini-service-card,
.studio-subpage .service-package,
.studio-subpage .final-cta-card,
.studio-subpage .maintenance-card,
.studio-subpage .process-step,
.studio-subpage .about-portrait,
.studio-subpage .legal-content,
.studio-subpage .gallery-item {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.1), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.studio-subpage .card:hover,
.studio-subpage .preview-project-row:hover,
.studio-subpage .service-package:hover,
.studio-subpage .mini-service-card:hover,
.studio-subpage .gallery-item:hover {
    border-color: rgba(125, 178, 255, 0.36);
    transform: translateY(-7px);
    box-shadow:
        0 26px 66px rgba(0, 0, 0, 0.28),
        0 0 26px rgba(79, 140, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.studio-subpage .preview-work-hero {
    margin-top: 1rem;
}

.studio-subpage .preview-project-media,
.studio-subpage .preview-work-media,
.studio-subpage .project-visual,
.studio-subpage .portfolio-image {
    background:
        radial-gradient(circle at 50% 44%, rgba(125, 178, 255, 0.22), transparent 13rem),
        radial-gradient(circle at 88% 12%, rgba(216, 210, 200, 0.09), transparent 11rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        var(--studio-surface-2);
}

.studio-subpage .preview-photo-row img,
.studio-subpage .about-portrait img,
.studio-subpage .gallery-item img {
    filter: grayscale(0.04) contrast(1.02) brightness(0.96) saturate(0.95);
}

.studio-subpage .work-type-tag,
.studio-subpage .status-pill,
.studio-subpage .service-pill {
    display: inline-flex;
    width: fit-content;
    padding: 0.34rem 0.65rem;
    border: 1px solid rgba(125, 178, 255, 0.26);
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.12);
    color: #DAE9FF;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-subpage .service-icon,
.studio-subpage .hero-card-icon {
    background: linear-gradient(135deg, var(--studio-blue), var(--studio-blue-soft));
    box-shadow: 0 16px 34px rgba(79, 140, 255, 0.18);
}

.studio-subpage .form-control {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--studio-text);
}

.studio-subpage .form-control:focus {
    border-color: rgba(125, 178, 255, 0.56);
    background: rgba(255, 255, 255, 0.075);
}

.studio-subpage .contact-info-grid {
    align-items: stretch;
}

.studio-subpage .contact-info-grid>div {
    padding: 1.5rem;
}

.studio-subpage .legal-content {
    padding: clamp(1.4rem, 4vw, 2.2rem);
}

.studio-subpage .legal-content ul {
    list-style: disc;
}

.studio-subpage .mota-gallery {
    gap: 1.1rem !important;
}

.studio-subpage .lightbox {
    background: rgba(9, 11, 15, 0.92) !important;
}

.studio-subpage .lightbox-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.4rem;
}

.footer-legal-links a {
    color: var(--studio-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-legal-links a:hover {
    color: var(--studio-blue-soft);
}

.studio-cookie-banner {
    position: fixed;
    left: -420px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: calc(100% - 40px);
    max-width: 350px;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.14), transparent 12rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
        var(--studio-surface);
    color: var(--studio-text);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.studio-cookie-banner>div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.studio-cookie-banner i {
    color: var(--studio-blue-soft);
    font-size: 1.35rem;
}

.studio-cookie-banner h4,
.studio-cookie-banner p {
    margin: 0;
}

.studio-cookie-banner p {
    color: var(--studio-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.studio-cookie-banner a {
    color: var(--studio-blue-soft);
    text-decoration: underline;
}

.studio-cookie-banner .cine-btn {
    width: 100%;
}

@media (max-width: 820px) {
    .studio-subpage main {
        padding-top: 6.5rem !important;
    }

    .studio-subpage .preview-work-hero,
    .studio-subpage .preview-project-row {
        grid-template-columns: 1fr;
    }

    .studio-subpage .preview-work-hero {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .studio-subpage .container {
        padding-inline: 0.85rem;
    }

    .studio-subpage .section {
        padding-block: 3.8rem;
    }

    .studio-subpage .services-hero {
        padding-top: 6.5rem;
    }

    .studio-subpage .preview-project-media,
    .studio-subpage .preview-photo-row img {
        min-height: 15rem;
    }

    .footer-legal-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* Adapted internal page layouts */
.studio-page-main {
    padding-top: 7rem;
}

.studio-page-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}

.studio-page-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.35fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
    padding: clamp(1.6rem, 5vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 0%, rgba(125, 178, 255, 0.14), transparent 18rem),
        radial-gradient(circle at 10% 20%, rgba(216, 210, 200, 0.07), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
    box-shadow:
        0 24px 68px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.studio-page-hero h1 {
    max-width: 820px;
    margin: -15px 0 0;
    color: var(--studio-text);
    font-size: clamp(2.55rem, 7vw, 5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.studio-page-hero p {
    max-width: 680px;
    margin: 1rem 0 0;
    color: var(--studio-muted);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.75;
}

.studio-page-meta {
    display: grid;
    gap: 0.75rem;
    color: var(--studio-muted);
    font-size: 0.88rem;
}

.studio-page-meta span {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-page-meta strong {
    color: var(--studio-text);
}

.studio-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.studio-work-card {
    display: flex;
    flex-direction: column;
    min-height: 35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.1), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.studio-work-card:hover {
    transform: translateY(-7px);
    border-color: rgba(125, 178, 255, 0.36);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.3),
        0 0 26px rgba(79, 140, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.studio-work-media {
    position: relative;
    min-height: 21rem;
    margin: 1rem 1rem 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 44%, rgba(125, 178, 255, 0.22), transparent 13rem),
        radial-gradient(circle at 88% 12%, rgba(216, 210, 200, 0.09), transparent 11rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        var(--studio-surface-2);
}

.studio-work-media img {
    width: 100%;
    height: 100%;
    min-height: 21rem;
    object-fit: cover;
    filter: grayscale(0.04) contrast(1.02) brightness(0.96) saturate(0.95);
    transition: transform 500ms ease;
}

.studio-work-card:hover .studio-work-media img {
    transform: scale(1.045);
}

.studio-abstract-media {
    display: grid;
    place-items: center;
}


.studio-work-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.55rem;
}

.studio-card-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.studio-card-topline span {
    color: var(--studio-blue-soft);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.studio-card-topline strong {
    flex: 0 0 auto;
    padding: 0.34rem 0.65rem;
    border: 1px solid rgba(125, 178, 255, 0.26);
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.12);
    color: #DAE9FF;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-work-copy h2,
.studio-work-copy h3 {
    margin: 0 0 0.75rem;
    color: var(--studio-text);
    font-size: 1.45rem;
    line-height: 1.15;
}

.studio-work-copy p {
    color: var(--studio-muted);
    line-height: 1.7;
}

.studio-inline-actions,
.studio-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.studio-about-grid,
.studio-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.studio-about-copy {
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.1), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
}

.studio-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.studio-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.studio-service-card {
    min-height: 17rem;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.1), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
    transition: transform 240ms ease, border-color 240ms ease;
}

.studio-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(125, 178, 255, 0.36);
}

.studio-service-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--studio-blue), var(--studio-blue-soft));
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(79, 140, 255, 0.18);
}

.studio-service-card h3 {
    margin-bottom: 0.7rem;
    color: var(--studio-text);
}

.studio-service-card p {
    color: var(--studio-muted);
    line-height: 1.65;
}

.studio-cta-band {
    padding: clamp(1.8rem, 5vw, 3.2rem);
    border: 1px solid rgba(125, 178, 255, 0.28);
    border-radius: 34px;
    background:
        radial-gradient(circle at 8% 0%, rgba(125, 178, 255, 0.16), transparent 20rem),
        radial-gradient(circle at 100% 74%, rgba(216, 210, 200, 0.08), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
        var(--studio-surface);
}

@media (max-width: 1080px) {

    .studio-work-grid,
    .studio-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .studio-page-hero-card,
    .studio-about-grid,
    .studio-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .studio-page-main {
        padding-top: 6rem;
    }

    .studio-work-grid,
    .studio-service-grid,
    .studio-list-grid {
        grid-template-columns: 1fr;
    }

    .studio-work-card,
    .studio-service-card {
        min-height: auto;
    }

    .studio-work-media,
    .studio-work-media img {
        min-height: 16rem;
    }

    .studio-card-topline {
        flex-direction: column;
        gap: 0.65rem;
    }
}

/* Final mobile navigation guard */
@media (max-width: 820px) {
    .cine-header .cine-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none;
        transform: translateY(-0.8rem) !important;
        z-index: 1001;
    }

    .cine-header .cine-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        transform: translateY(0) !important;
    }
}

/* Final footer layout */
footer.cine-footer,
.studio-home footer.cine-footer {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
    background:
        radial-gradient(circle at 12% 0%, rgba(141, 184, 255, 0.08), transparent 22rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004)),
        var(--studio-bg-deep);
}

.cine-footer .studio-footer-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    text-align: left;
}

.studio-home .cine-footer .studio-footer-stack,
.hybrid-home .cine-footer .studio-footer-stack {
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
}

.footer-main {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(12rem, 0.8fr) minmax(10rem, 0.55fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.footer-brand img {
    display: block;
    width: clamp(8rem, 15vw, 12rem);
    height: auto;
}

.footer-brand p {
    max-width: 24rem;
    margin: 0;
    color: rgba(245, 242, 236, 0.68);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.65;
}

.cine-footer .footer-mini-nav {
    display: grid;
    gap: 0.75rem;
    justify-content: start;
}

.cine-footer .footer-mini-nav a {
    width: fit-content;
    color: rgba(245, 242, 236, 0.64);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.cine-footer .footer-mini-nav a:hover {
    color: var(--studio-blue-soft);
    transform: translateX(4px);
}

.footer-contact {
    display: grid;
    justify-items: end;
    gap: 1rem;
}

.footer-contact>span {
    color: rgba(245, 242, 236, 0.78);
    font-weight: 800;
}

.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(245, 242, 236, 0.66);
    font-size: 1.15rem;
}

.footer-social-links a:hover {
    border-color: rgba(141, 184, 255, 0.38);
    background: rgba(79, 140, 255, 0.12);
    color: var(--studio-blue-soft);
    transform: translateY(-3px);
}

.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(245, 242, 236, 0.62);
    font-size: 0.92rem;
    font-weight: 600;
}

.footer-bottom .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-top: 0;
}

.footer-bottom .footer-legal-links a {
    color: rgba(245, 242, 236, 0.58);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.footer-bottom .footer-legal-links a:hover {
    color: var(--studio-blue-soft);
}

@media (max-width: 560px) {
    .cine-footer .studio-footer-stack {
        gap: 1.7rem;
    }

    .footer-main,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
        text-align: left;
    }

    .footer-contact,
    .footer-social-links,
    .footer-bottom .footer-legal-links {
        justify-content: flex-start;
        justify-items: start;
    }

    .cine-footer .footer-mini-nav {
        gap: 0.7rem;
    }

    .footer-social-links {
        gap: 0.65rem;
    }
}

/* Comfortable contact page */
.contact-page-main {
    padding-top: 6.5rem;
}

.contact-hero-soft {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
}

.contact-hero-copy h1 {
    max-width: 760px;
    margin: 0.65rem 0 0;
    color: var(--studio-text);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.contact-hero-copy p {
    max-width: 620px;
    margin-top: 1.1rem;
    color: var(--studio-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.75;
}

.contact-direct-panel {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 0%, rgba(125, 178, 255, 0.13), transparent 14rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        var(--studio-surface);
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-direct-panel a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 3.35rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    color: var(--studio-text);
    background: rgba(255, 255, 255, 0.035);
}

.contact-direct-panel a:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 178, 255, 0.34);
    background: rgba(125, 178, 255, 0.08);
}

.contact-direct-panel i {
    width: 2.15rem;
    height: 2.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--studio-blue), var(--studio-blue-soft));
    box-shadow: 0 12px 26px rgba(79, 140, 255, 0.16);
}

.contact-direct-panel span {
    font-weight: 800;
}

.contact-form-section {
    padding: 0 0 clamp(5rem, 9vw, 7rem);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 0.75fr);
    gap: clamp(1.3rem, 4vw, 2.2rem);
    align-items: start;
}

.contact-side-note,
.contact-form-card,
.contact-message-state {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 0%, rgba(125, 178, 255, 0.1), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038)),
        var(--studio-surface);
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-side-note {
    position: sticky;
    top: 6.5rem;
    padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-side-note h2,
.contact-message-state h2 {
    margin: 0.6rem 0 0.8rem;
    color: var(--studio-text);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.08;
}

.contact-side-note p,
.contact-message-state p {
    color: var(--studio-muted);
    line-height: 1.75;
}

.contact-side-note ul {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.3rem;
}

.contact-side-note li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(245, 242, 236, 0.74) !important;
}

.contact-side-note li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--studio-blue-soft);
    box-shadow: 0 0 14px rgba(125, 178, 255, 0.45);
}

.contact-form-card {
    padding: clamp(1.35rem, 4vw, 2.3rem);
}

.page-contacto .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-contacto .form-group {
    margin-bottom: 1.15rem;
}

.page-contacto .form-group label {
    color: rgba(245, 242, 236, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-contacto .form-control {
    min-height: 3.35rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.page-contacto textarea.form-control {
    min-height: 11rem;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 0.35rem;
}

.contact-message-state {
    margin-bottom: 1.3rem;
    padding: 1.4rem;
}

.contact-message-error {
    border-color: rgba(239, 68, 68, 0.45);
}

@media (max-width: 900px) {

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

    .contact-side-note {
        position: static;
    }
}

@media (max-width: 560px) {
    .contact-page-main {
        padding-top: 5.75rem;
    }

    .contact-hero-soft {
        padding-top: 3.4rem;
    }

    .contact-direct-panel {
        padding: 0.75rem;
        border-radius: 24px;
    }

    .page-contacto .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-side-note,
    .contact-form-card,
    .contact-message-state {
        border-radius: 24px;
    }
}

/* Comfortable services page */
.services-comfort-main {
    padding-top: 6.5rem;
}

.services-comfort-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
}

.services-comfort-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.38fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
}

.services-comfort-copy h1 {
    max-width: 820px;
    margin: 0.65rem 0 0;
    color: var(--studio-text);
    font-size: clamp(2.75rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.services-comfort-copy p {
    max-width: 650px;
    margin-top: 1.1rem;
    color: var(--studio-muted);
    font-size: clamp(1rem, 2vw, 1.14rem);
    line-height: 1.75;
}

.services-comfort-panel {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 0%, rgba(125, 178, 255, 0.13), transparent 14rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        var(--studio-surface);
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.services-comfort-panel>span {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--studio-blue-soft);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.services-comfort-panel li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 242, 236, 0.74) !important;
    font-weight: 700;
}

.services-comfort-panel li:last-child {
    border-bottom: 0;
}

.services-feature-section,
.services-detail-section,
.services-process-section {
    padding: 0 0 clamp(4.5rem, 8vw, 6.5rem);
}

.services-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
    gap: 1.1rem;
}

.services-feature-card,
.services-line-list article,
.services-process-grid article,
.services-final-cta {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.1), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.services-feature-card {
    min-height: 18rem;
    padding: clamp(1.3rem, 3vw, 2rem);
}

.services-feature-main {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 37rem;
    border-color: rgba(125, 178, 255, 0.26);
    background:
        radial-gradient(circle at 10% 0%, rgba(125, 178, 255, 0.18), transparent 21rem),
        radial-gradient(circle at 100% 80%, rgba(216, 210, 200, 0.08), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
        var(--studio-surface);
}

.services-feature-card>span:not(.services-eyebrow) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 2.2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--studio-blue), var(--studio-blue-soft));
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(79, 140, 255, 0.18);
}

.services-feature-card h2,
.services-detail-copy h2,
.services-final-cta h2 {
    margin: 0.65rem 0 1rem;
    color: var(--studio-text);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
}

.services-feature-card h3,
.services-line-list strong,
.services-process-grid h3 {
    color: var(--studio-text);
}

.services-feature-card p,
.services-detail-copy p,
.services-line-list p,
.services-process-grid p,
.services-final-cta p {
    color: var(--studio-muted);
    line-height: 1.7;
}

.services-feature-card .btn,
.services-final-cta .btn {
    width: fit-content;
    margin-top: 1.4rem;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 3rem);
    align-items: start;
}

.services-line-list {
    display: grid;
    gap: 0.85rem;
}

.services-line-list article {
    padding: 1.25rem;
}

.services-line-list strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.services-process-grid article {
    padding: 1.35rem;
}

.services-process-grid span {
    display: block;
    margin-bottom: 2rem;
    color: var(--studio-blue-soft);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
}

.services-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.6rem, 5vw, 3rem);
    border-color: rgba(125, 178, 255, 0.28);
}

.services-final-cta p {
    max-width: 680px;
}

@media (max-width: 980px) {

    .services-comfort-hero-grid,
    .services-detail-grid,
    .services-final-cta {
        grid-template-columns: 1fr;
    }

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

    .services-feature-main {
        grid-column: span 2;
        grid-row: auto;
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .services-comfort-main {
        padding-top: 5.75rem;
    }

    .services-comfort-hero {
        padding-top: 3.4rem;
    }

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

    .services-feature-main {
        grid-column: auto;
    }

    .services-feature-card,
    .services-comfort-panel,
    .services-line-list article,
    .services-process-grid article,
    .services-final-cta {
        border-radius: 24px;
    }

    .services-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Homepage services/contact refresh */
.home-services-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 82% 6%, rgba(125, 178, 255, 0.08), transparent 22rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.005));
}

.home-services-head {
    max-width: 720px;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.home-services-head h2 {
    margin: 0.65rem 0 0;
    color: var(--studio-text);
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1;
}

.home-services-head p {
    max-width: 620px;
    margin-top: 1rem;
    color: var(--studio-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-services-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.15rem;
    align-items: start;
}

.home-service-feature,
.home-service-row,
.home-contact-card {
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 32px;
    background:
        radial-gradient(circle at 14% 0%, rgba(125, 178, 255, 0.1), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        var(--studio-surface);
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-service-feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding: clamp(1.45rem, 3.4vw, 2.15rem);
    border-color: rgba(125, 178, 255, 0.26);
    background:
        radial-gradient(circle at 10% 0%, rgba(125, 178, 255, 0.18), transparent 21rem),
        radial-gradient(circle at 100% 80%, rgba(216, 210, 200, 0.08), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
        var(--studio-surface);
}

.home-service-feature h3 {
    max-width: 520px;
    margin: 0.7rem 0 1rem;
    color: var(--studio-text);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.04;
}

.home-service-feature p {
    max-width: 620px;
    color: var(--studio-muted);
    line-height: 1.65;
}

.home-service-feature .cine-btn {
    width: fit-content;
    margin-top: 1.15rem;
}

.home-service-list {
    display: grid;
    gap: 0.85rem;
}

.home-service-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.25rem;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.home-service-row:hover {
    transform: translateY(-5px);
    border-color: rgba(125, 178, 255, 0.34);
    box-shadow:
        0 26px 66px rgba(0, 0, 0, 0.28),
        0 0 26px rgba(79, 140, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.home-service-row>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--studio-blue), var(--studio-blue-soft));
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(79, 140, 255, 0.18);
}

.home-service-row h3 {
    margin: 0 0 0.35rem;
    color: var(--studio-text);
    font-size: 1.12rem;
}

.home-service-row p {
    margin: 0;
    color: var(--studio-muted);
    line-height: 1.65;
}

.home-contact-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 5vw, 3rem);
    align-items: center;
    padding: clamp(1.6rem, 5vw, 3.2rem);
    border-color: rgba(125, 178, 255, 0.24);
}

.home-contact-card h2 {
    max-width: 760px;
    margin: 0.65rem 0 0;
    color: var(--studio-text);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.04;
}

.home-contact-card p {
    max-width: 560px;
    margin-top: 1rem;
    color: var(--studio-muted);
    line-height: 1.75;
}

.home-contact-actions {
    display: grid;
    gap: 0.8rem;
    min-width: min(100%, 15rem);
}

.home-contact-actions .cine-btn {
    width: 100%;
}

@media (max-width: 900px) {

    .home-services-showcase,
    .home-contact-card {
        grid-template-columns: 1fr;
    }

    .home-service-feature {
        min-height: auto;
    }

    .home-contact-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .home-contact-actions .cine-btn {
        width: auto;
    }
}

@media (max-width: 560px) {

    .home-service-feature,
    .home-service-row,
    .home-contact-card {
        border-radius: 24px;
    }

    .home-service-row {
        grid-template-columns: 1fr;
    }

    .home-contact-actions {
        flex-direction: column;
    }

    .home-contact-actions .cine-btn {
        width: 100%;
    }
}

/* Human identity pass: less template, more by.leandr0 */
.studio-home {
    --studio-bg: #0f1217;
    --studio-bg-deep: #0b0d11;
    --studio-surface: #181d25;
    --studio-surface-2: #202632;
    --studio-text: #f6f2eb;
    --studio-muted: #b6b0a8;
    --studio-soft: #d7cfc1;
    --studio-blue: #3f7df1;
    --studio-blue-soft: #8db8ff;
}

.studio-home .section-kicker,
.studio-home .services-eyebrow,
.studio-subpage .services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.95rem;
    color: var(--studio-blue-soft);
    font-family: var(--font-heading);
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(79, 140, 255, 0.18);
}

.studio-home .section-kicker::before {
    content: "";
    width: clamp(2.2rem, 4vw, 3.25rem);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--studio-blue), rgba(141, 184, 255, 0.15));
    box-shadow: 0 0 14px rgba(79, 140, 255, 0.28);
}

.studio-home .cine-section-head>.section-kicker {
    justify-content: center;
    width: 100%;
}

.studio-home .cine-section-head>.section-kicker::after {
    content: "";
    width: clamp(2.2rem, 4vw, 3.25rem);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(141, 184, 255, 0.15), var(--studio-blue));
    box-shadow: 0 0 14px rgba(79, 140, 255, 0.22);
}

.studio-home .cine-tech-label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.studio-home .cine-hero h1 {
    max-width: 9ch;
}

.studio-home .cine-subtitle {
    max-width: 42rem;
    letter-spacing: 0.08em;
}

.studio-home .hybrid-focus-panel {
    transform: translateY(1.4rem);
    border-radius: 28px 34px 28px 34px;
}

.studio-home .hybrid-focus-panel li {
    font-size: 1rem;
}

.studio-home .project-card,
.studio-home .home-service-feature,
.studio-home .home-service-row,
.studio-home .home-contact-card,
.studio-subpage .studio-page-hero-card,
.studio-subpage .studio-work-card,
.studio-subpage .studio-service-card,
.studio-subpage .services-feature-card,
.studio-subpage .services-line-list article,
.studio-subpage .services-process-grid article,
.studio-subpage .services-final-cta,
.studio-subpage .contact-side-note,
.studio-subpage .contact-form-card,
.studio-subpage .contact-direct-panel {
    background:
        radial-gradient(circle at 12% 0%, rgba(141, 184, 255, 0.095), transparent 17rem),
        linear-gradient(150deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
        var(--studio-surface);
}

.studio-home .project-card:nth-child(2),
.studio-subpage .studio-work-card:nth-child(2),
.studio-subpage .studio-service-card:nth-child(2) {
    transform: translateY(0.75rem);
}

.studio-home .project-card:nth-child(3),
.studio-subpage .studio-work-card:nth-child(3),
.studio-subpage .studio-service-card:nth-child(3) {
    transform: translateY(1.35rem);
}

.studio-home .project-card:hover,
.studio-subpage .studio-work-card:hover,
.studio-subpage .studio-service-card:hover {
    transform: translateY(-0.25rem);
}

.studio-home .home-service-row:nth-child(even) {
    margin-left: clamp(0rem, 2vw, 1.1rem);
}

.studio-home .home-service-row:nth-child(odd) {
    margin-right: clamp(0rem, 2vw, 0.8rem);
}

/* Homepage work cards polish */
.studio-home .work-grid {
    gap: clamp(1rem, 2vw, 1.45rem);
}

.studio-home .project-card {
    position: relative;
    min-height: 36rem;
    border-radius: 28px;
}

.studio-home .project-card:hover {
    transform: translateY(-0.45rem);
}

.studio-home .project-media {
    margin: 1rem 1rem 0;
    min-height: clamp(18rem, 28vw, 23.5rem);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.studio-home .project-card:first-child .project-media {
    min-height: clamp(18rem, 28vw, 23.5rem);
}

.studio-home .project-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(9, 11, 15, 0) 46%, rgba(9, 11, 15, 0.28)),
        radial-gradient(circle at 20% 0%, rgba(141, 184, 255, 0.12), transparent 16rem);
}

.studio-home .project-media img {
    min-height: clamp(18rem, 28vw, 23.5rem);
    border-radius: 20px;
}

.studio-home .project-copy {
    position: relative;
    padding: 1.45rem 1.55rem 1.7rem;
}

.project-number {
    display: block;
    margin-bottom: 1rem;
    color: rgba(246, 242, 235, 0.22);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 0.8;
}

.studio-home .project-topline {
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.studio-home .project-topline span {
    font-size: 0.78rem;
    letter-spacing: 0.01em;
}

.studio-home .project-topline strong {
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0;
}

.studio-home .project-copy h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    letter-spacing: 0;
}

.studio-home .project-copy p {
    max-width: 34rem;
    font-size: 1rem;
}

.epf-stage,
.web-preview {
    position: relative;
    z-index: 1;
    width: min(78%, 20rem);
    aspect-ratio: 1.18;
    border: 1px solid rgba(246, 242, 235, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(13, 16, 21, 0.48);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.epf-stage {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0.8rem;
    padding: 1rem;
}

.epf-topbar {
    width: 44%;
    height: 0.32rem;
    border-radius: 999px;
    background: var(--studio-blue-soft);
    box-shadow: 0 0 18px rgba(79, 140, 255, 0.34);
}

.epf-program {
    display: grid;
    grid-template-columns: 1fr 0.64fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.55rem;
}

.epf-program span {
    border: 1px solid rgba(246, 242, 235, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.epf-program span:first-child {
    grid-row: span 2;
    background:
        radial-gradient(circle at 52% 44%, rgba(141, 184, 255, 0.18), transparent 7rem),
        rgba(255, 255, 255, 0.055);
}

.epf-timeline {
    display: grid;
    gap: 0.38rem;
}

.epf-timeline span {
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(246, 242, 235, 0.42);
}

.epf-timeline span:nth-child(2) {
    width: 72%;
    background: var(--studio-blue);
}

.epf-timeline span:nth-child(3) {
    width: 44%;
}

.web-preview {
    display: block;
    padding: 1.35rem;
}

.web-chrome,
.web-hero-line,
.web-copy-line,
.web-card-line {
    position: absolute;
    display: block;
    border-radius: 999px;
}

.web-chrome {
    top: 1rem;
    left: 1rem;
    width: 3.8rem;
    height: 0.35rem;
    background: rgba(246, 242, 235, 0.34);
}

.web-hero-line {
    top: 35%;
    left: 1.35rem;
    right: 1.35rem;
    height: 0.28rem;
    background: var(--studio-blue-soft);
}

.web-copy-line {
    top: 47%;
    left: 1.35rem;
    width: 58%;
    height: 0.25rem;
    background: rgba(246, 242, 235, 0.5);
}

.web-card-line {
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.45rem;
    height: 0.28rem;
    background: rgba(246, 242, 235, 0.36);
}

.studio-home .home-services-head {
    max-width: 800px;
}

.studio-home .home-services-head h2,
.studio-home .home-contact-card h2 {
    max-width: 780px;
}

.studio-home .home-service-row>span,
.studio-subpage .studio-service-card span,
.studio-subpage .services-feature-card>span:not(.services-eyebrow) {
    border-radius: 999px;
    background: rgba(63, 125, 241, 0.18);
    border: 1px solid rgba(141, 184, 255, 0.32);
    box-shadow: none;
}

.studio-home .cine-btn,
.studio-subpage .btn {
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0.02em;
}

.studio-home .cine-menu a,
.studio-subpage .cine-menu a,
.studio-home .cine-nav-cta,
.studio-subpage .cine-nav-cta {
    text-transform: none;
    letter-spacing: 0;
}

.studio-home .project-topline span,
.studio-home .project-topline strong,
.studio-subpage .studio-card-topline span,
.studio-subpage .studio-card-topline strong {
    text-transform: none;
    letter-spacing: 0.02em;
}

.studio-home .cine-btn-primary,
.studio-subpage .btn-primary {
    background:
        linear-gradient(135deg, rgba(63, 125, 241, 0.92), rgba(141, 184, 255, 0.28));
}

.studio-subpage .studio-page-meta span {
    align-items: baseline;
}

.studio-subpage .studio-page-main {
    background:
        radial-gradient(circle at 82% 6%, rgba(63, 125, 241, 0.11), transparent 24rem),
        radial-gradient(circle at 10% 22%, rgba(215, 207, 193, 0.07), transparent 22rem);
}

.studio-subpage .contact-hero-copy h1,
.studio-subpage .services-comfort-copy h1,
.studio-subpage .studio-page-hero h1 {
    max-width: 780px;
}

/* Work page hero */
.page-trabalhos .studio-page-hero {
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
}

.page-trabalhos .work-page-hero-card {
    position: relative;
    overflow: hidden;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0 0 clamp(1.5rem, 4vw, 2.4rem);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-trabalhos .work-page-hero-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: clamp(1rem, 4vw, 3rem);
    width: clamp(7rem, 16vw, 13rem);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--studio-blue-soft));
    opacity: 0.78;
}

.page-trabalhos .work-page-hero-copy {
    position: relative;
    z-index: 1;
}

.page-trabalhos .studio-page-hero h1 {
    max-width: 1000px;
    margin-top: 0.8rem;
    font-size: clamp(2.8rem, 6.4vw, 5.2rem);
    line-height: 0.94;
    text-wrap: auto;
}

.page-trabalhos .studio-page-hero p {
    max-width: 700px;
    font-size: clamp(1.02rem, 1.8vw, 1.22rem);
    line-height: 1.7;
}

.work-hero-focus {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: -35px;
}

.work-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: 0 1rem;
    border: 1px solid rgba(141, 184, 255, 0.25);
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.09);
    color: rgba(245, 242, 236, 0.78);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.work-filter-pill:hover,
.work-filter-pill.is-active {
    transform: translateY(-2px);
    border-color: rgba(141, 184, 255, 0.52);
    background: rgba(79, 140, 255, 0.18);
    color: var(--studio-text);
}

.work-filter-pill.is-active {
    box-shadow: 0 0 0 1px rgba(141, 184, 255, 0.08), 0 16px 34px rgba(63, 125, 241, 0.13);
}

.work-filter-item.is-hidden {
    display: none;
}

@media (max-width: 760px) {
    .work-filter-pill {
        min-height: 2.45rem;
    }
}

@media (max-width: 820px) {

    .studio-home .hybrid-focus-panel,
    .studio-home .project-card:nth-child(2),
    .studio-home .project-card:nth-child(3),
    .studio-subpage .studio-work-card:nth-child(2),
    .studio-subpage .studio-work-card:nth-child(3),
    .studio-subpage .studio-service-card:nth-child(2),
    .studio-subpage .studio-service-card:nth-child(3) {
        transform: none;
    }

    .studio-home .home-service-row:nth-child(even),
    .studio-home .home-service-row:nth-child(odd) {
        margin-left: 0;
        margin-right: 0;
    }

    .studio-home .project-card {
        min-height: auto;
    }

    .studio-home .project-media,
    .studio-home .project-media img {
        min-height: 17rem;
    }

    .project-number {
        font-size: 2rem;
    }
}

/* Homepage title cleanup */
.studio-home .cine-hero h1 {
    font-size: clamp(4rem, 8.4vw, 7.2rem);
    line-height: 0.88;
}

.studio-home .cine-section-head h2,
.studio-home .about-copy h2,
.studio-home .home-services-head h2,
.studio-home .home-service-feature h3,
.studio-home .home-contact-card h2 {
    letter-spacing: 0;
    text-wrap: balance;
}

.studio-home .cine-section-head h2 {
    font-size: clamp(2.5rem, 5.2vw, 4.4rem);
    line-height: 1;
}

.studio-home .about-copy h2 {
    max-width: 12ch;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.96;
}

.studio-home .home-services-head h2 {
    font-size: clamp(3rem, 6.2vw, 5rem);
    line-height: 0.96;
}

.studio-home .home-service-feature {
    min-height: 0;
}

.studio-home .home-service-feature h3 {
    max-width: 480px;
    font-size: clamp(2.15rem, 3.8vw, 3.35rem);
    line-height: 1;
}

.studio-home .home-contact-card h2 {
    max-width: 720px;
    font-size: clamp(2.35rem, 4.8vw, 4.2rem);
    line-height: 0.98;
}

@media (max-width: 820px) {
    .studio-home .cine-hero h1 {
        max-width: 8ch;
        font-size: clamp(3.4rem, 15vw, 5rem);
    }

    .studio-home .about-copy h2,
    .studio-home .home-services-head h2,
    .studio-home .home-service-feature h3,
    .studio-home .home-contact-card h2 {
        max-width: 100%;
    }
}

/* === PREMIUM DESIGN ENHANCEMENTS === */

/* Focus links added in index.php */
.focus-link {
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.focus-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.focus-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.focus-link:hover::after {
    width: 100%;
}

/* Glassmorphism Enhancements */
.card,
.portfolio-item,
.process-step,
.studio-work-card,
.project-card {
    background: rgba(18, 18, 18, 0.45) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.card:hover,
.portfolio-item:hover,
.process-step:hover,
.studio-work-card:hover,
.project-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    box-shadow: 0 15px 40px -5px rgba(99, 102, 241, 0.2), 0 0 20px rgba(255, 255, 255, 0.05) inset !important;
}

/* Button glow effects */
.cine-btn,
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cine-btn-primary::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    z-index: -1;
    pointer-events: none;
}

.cine-btn-primary:hover::before,
.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Fix filtering visibility issue if exists */
.work-filter-item.is-hidden {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Dynamic background lighting */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03), transparent 60%);
    pointer-events: none;
    z-index: -9999;
    animation: slow-pan 30s linear infinite alternate;
}

@keyframes slow-pan {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(5%, 5%);
    }
}


/* === EYEBROW REDESIGN === */
.services-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.4rem 1rem !important;
    height: auto !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)) !important;
    backdrop-filter: blur(10px) !important;
    color: #fff !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.services-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--primary-color);
}

/* === EYEBROW POSITION FIX === */
.services-feature-main .services-eyebrow {
    margin-bottom: auto !important;
    align-self: flex-start !important;
}

/* === TEXT LAYOUT FIX FOR MAIN SERVICE CARD === */
.services-feature-main h2,
.services-feature-main p,
.services-feature-main .btn {
    text-align: left !important;
    align-self: flex-start !important;
}

.services-feature-main h2 {
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    margin-bottom: 1rem !important;
    letter-spacing: -1px !important;
}

.services-feature-main p {
    font-size: 1.1rem !important;
    max-width: 95% !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
    color: #e5e5e5 !important;
}

/* === FINAL TWEAKS FOR MAIN SERVICE CARD === */
.services-feature-main h2 {
    margin-top: auto !important;
    /* Helps push it down away from the eyebrow */
    padding-top: 2rem !important;
    background: linear-gradient(135deg, #ffffff, #a5b4fc 80%, #fda4af);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 1.2rem !important;
}

.services-feature-main p {
    margin-bottom: 2.5rem !important;
    /* More breathing room before the button */
    font-size: 1.15rem !important;
    /* Slightly larger for easier reading */
    font-weight: 300 !important;
}

.services-feature-main .btn {
    margin-top: 0 !important;
    transform: translateY(0);
}

/* === CORRECTION BASED ON FEEDBACK === */
.services-feature-main {
    justify-content: flex-start !important;
}

.services-feature-main .services-eyebrow {
    margin-bottom: 1.5rem !important;
}

.services-feature-main h2 {
    margin-top: 0 !important;
    padding-top: 0 !important;

    /* Remove gradient text */
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #ffffff !important;
}

.services-feature-main p {
    margin-bottom: 2rem !important;
}

/* === PUSH P AND BTN DOWN === */
.services-feature-main p {
    margin-top: auto !important;
}

/* === RESTORE HOVER EFFECT FOR SERVICES CARDS === */
.services-feature-card:hover,
.services-line-list article:hover,
.services-process-grid article:hover,
.services-final-cta:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    box-shadow: 0 15px 40px -5px rgba(99, 102, 241, 0.2), 0 0 20px rgba(255, 255, 255, 0.05) inset !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Ensure default state has transition for smooth reverse animation */
.services-feature-card,
.services-line-list article,
.services-process-grid article,
.services-final-cta {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* === PROJETO MOTA CSS === */
/* Grid Dinâmica (Bento/Masonry style) */
.mota-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    background-color: var(--bg-secondary, #1a1a1a);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, opacity 0.5s ease;
    opacity: 0;
    /* Inicia invisível até o JS definir a orientação */
}

.gallery-item img.loaded {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Classes dinâmicas para orientações */
.gallery-item.horizontal {
    grid-column: span 2;
}

.gallery-item.vertical {
    grid-row: span 2;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Ícone de zoom no hover */
.gallery-item::after {
    content: '\f00e';
    /* fa-magnifying-glass-plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Fullscreen */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
    opacity: 0;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
    opacity: 1;
}

/* Botões do Lightbox */
.lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

.lb-close {
    top: -30px;
    right: -30px;
}

.lb-prev {
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
}

.lb-next {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

/* Responsividade */
@media (max-width: 992px) {
    .mota-gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        grid-auto-rows: 250px;
    }
}

@media (max-width: 768px) {
    .mota-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-item {
        height: 350px;
    }

    .gallery-item.horizontal,
    .gallery-item.vertical,
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .lb-prev {
        left: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lb-next {
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lb-close {
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.5);
    }
}