/*
Theme Name: FOCO CREATIVO v4
Theme URI: https://fococreativo.org
Author: FOCO CREATIVO
Author URI: https://fococreativo.org
Description: Tema personalizado para el estudio creativo FOCO.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: foco-creativo-v4
Tags: one-column, custom-color, dark, photography, portfolio
*/

/* Google Fonts loaded via wp_enqueue_style in functions.php for better performance */

/* ============================================================
   ROOT VARIABLES
   ============================================================ */

:root {
    --bg: #0f0f0f;
    --card: #111111;
    --border: rgba(255, 255, 255, 0.15);
    --glass: rgba(255, 255, 255, 0.04);
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-25: rgba(255, 255, 255, 0.25);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-06: rgba(255, 255, 255, 0.06);
    --white-04: rgba(255, 255, 255, 0.04);
    --white-03: rgba(255, 255, 255, 0.03);
    --gray-888: #888888;
    --gray-aaa: #aaaaaa;
    --gray-d8: #d8d8d8;
    --gray-666: #666666;
    --gray-444: #444444;
    --black-70: rgba(0, 0, 0, 0.7);
    --black-60: rgba(0, 0, 0, 0.6);
    --black-50: rgba(0, 0, 0, 0.5);
    --black-45: rgba(0, 0, 0, 0.45);
    --black-40: rgba(0, 0, 0, 0.4);
    --black-30: rgba(0, 0, 0, 0.3);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

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

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

ul, ol {
    list-style: none;
}

::selection {
    background: var(--white);
    color: var(--bg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--gray-444);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-666);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-444) #111;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

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

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 70px;
    z-index: 1000;
    transition: all 0.5s ease;
}

#site-header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--white-10);
    padding: 16px 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--white);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.desktop-nav .nav-link {
    color: var(--gray-888);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.4s ease;
}

.desktop-nav .nav-link:hover {
    color: var(--white);
}

.desktop-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.4s ease;
}

.desktop-nav .nav-link:hover::after {
    width: 100%;
}

/* ============================================================
   HEADER ACTIONS
   ============================================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white-30);
    color: var(--white);
    transition: all 0.3s ease;
}

.phone-icon:hover {
    background: var(--white);
    color: var(--bg);
}

/* ============================================================
   HAMBURGER
   ============================================================ */

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
}

/* ============================================================
   MOBILE MENU PANEL
   ============================================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--bg);
    border-left: 1px solid var(--white-10);
    z-index: 1002;
    padding-top: 80px;
    padding-left: 32px;
    padding-right: 32px;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-nav-link {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray-888);
    padding: 16px 0;
    border-bottom: 1px solid var(--white-06);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--white);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 12px 24px;
    border: 1px solid var(--white-20);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    background: var(--white);
    color: var(--bg);
}

/* ============================================================
   CONTAINER
   ============================================================ */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ========== HERO SLIDESHOW ========== */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slide--active {
    opacity: 1;
}

/* Slide indicator dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot--active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-overlay-vertical {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* ============================================================
   CONTENT BOX
   ============================================================ */

.content-box {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 650px;
    height: 78vh;
    max-height: 700px;
    margin-right: 90px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-label {
    color: var(--gray-d8);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 90px;
    line-height: 0.88;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -4px;
    color: var(--white);
}

.portfolio-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}

.portfolio-btn:hover {
    transform: translateY(-5px);
}

.portfolio-btn-label {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
}

.portfolio-btn-arrow {
    font-size: 70px;
    line-height: 1;
    animation: bounce 2s ease-in-out infinite;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */

.section-portfolio {
    min-height: 100vh;
    background: var(--card);
    padding: 120px 70px;
}

.section-header {
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-888);
    margin-bottom: 12px;
}

.section-title {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 380px;
    gap: 20px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Horizontal: 2 columns, 1 row */
.portfolio-card--wide {
    grid-column: span 2;
}

/* Vertical: 1 column + 2 rows */
.portfolio-card--tall {
    grid-row: span 2;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.portfolio-card-category {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.portfolio-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.portfolio-card-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
}

/* ============================================================
   PORTFOLIO VIDEO ICON
   ============================================================ */

.portfolio-card-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-card-video-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-card-video-icon svg {
    margin-left: 4px;
}

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

.section-services {
    min-height: 100vh;
    background: var(--bg);
    padding: 120px 70px;
}

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

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

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon svg {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-888);
    transition: color 0.5s ease;
}

.service-card:hover .service-desc {
    color: var(--gray-aaa);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.5s ease;
}

.service-card:hover .service-link {
    color: rgba(255, 255, 255, 0.7);
}

.service-link svg {
    transition: transform 0.5s ease;
}

.service-card:hover .service-link svg {
    transform: translateX(8px);
}

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

.section-clients {
    min-height: 100vh;
    background: var(--card);
    padding: 120px 70px;
}

/* ============================================================
   TESTIMONIALS GRID
   ============================================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 112px;
}

.testimonial-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-aaa);
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--white);
}

.testimonial-role {
    font-size: 12px;
    color: var(--gray-888);
    margin-top: 4px;
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */

.client-logos {
    text-align: center;
}

.client-logos-title {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-666);
    margin-bottom: 32px;
}

.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.client-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.5s ease;
    cursor: default;
}

.client-logo:hover {
    color: rgba(255, 255, 255, 0.4);
}

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

footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta {
    padding: 120px 70px;
}

.footer-cta-header {
    margin-bottom: 64px;
}

.footer-cta-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-888);
    display: block;
    margin-bottom: 12px;
}

.footer-cta-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 32px;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-icon svg {
    color: var(--white);
}

.contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 70px;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray-666);
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social-link {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
    .content-box {
        width: 470px;
        margin-right: 50px;
        padding: 45px;
    }

    .hero-title {
        font-size: 76px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .portfolio-card--wide {
        grid-column: span 2;
        grid-row: span 2;
    }

    .portfolio-card--tall {
        grid-row: span 2;
    }

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

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

/* ============================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================================ */

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

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 22px;
    }

    .content-box {
        width: 85%;
        height: auto;
        margin: 30px;
        padding: 40px;
    }

    .hero-title {
        font-size: 64px;
        letter-spacing: -2px;
    }

    .portfolio-btn-label {
        font-size: 28px;
    }

    .portfolio-btn-arrow {
        font-size: 55px;
    }

    .section-portfolio,
    .section-services,
    .section-clients {
        padding: 80px 25px;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 12px;
    }

    .portfolio-card--wide {
        grid-column: span 2;
        grid-row: span 2;
    }

    .portfolio-card--tall {
        grid-row: span 2;
    }

    .portfolio-card-video-icon {
        width: 56px;
        height: 56px;
    }

    .portfolio-card-video-icon svg {
        width: 36px;
        height: 36px;
    }

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

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

    .footer-cta {
        padding: 80px 25px;
    }

    .footer-cta-title {
        font-size: 42px;
    }

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

    .footer-bottom {
        padding: 24px 25px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (max-width: 640px)
   ============================================================ */

@media (max-width: 640px) {
    #site-header {
        padding: 20px;
    }

    .content-box {
        width: 92%;
        padding: 30px;
        margin: 20px;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .portfolio-btn-label {
        font-size: 21px;
    }

    .portfolio-btn-arrow {
        font-size: 42px;
    }

    .section-portfolio,
    .section-services,
    .section-clients {
        padding: 60px 20px;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 12px;
    }

    .portfolio-card--wide,
    .portfolio-card--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-card-video-icon {
        width: 48px;
        height: 48px;
    }

    .portfolio-card-video-icon svg {
        width: 30px;
        height: 30px;
    }

    .client-logos-grid {
        gap: 32px;
    }

    .footer-cta {
        padding: 60px 20px;
    }

    .footer-cta-title {
        font-size: 36px;
    }

    .footer-bottom {
        padding: 20px;
    }
}

/* ============================================================
   RESPONSIVE - HERO SLIDESHOW BG POSITION
   ============================================================ */

@media (max-width: 1024px) {
    .hero-slide {
        background-position: 48% center;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        background-position: 45% center;
    }
}

@media (max-width: 640px) {
    .hero-slide {
        background-position: 40% center;
    }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-page {
    padding-top: 140px;
    min-height: 100vh;
    background: var(--bg);
}

.gallery-header {
    padding: 0 70px 48px;
}

.gallery-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-888);
    display: block;
    margin-bottom: 12px;
}

.gallery-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 16px;
}

.gallery-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    line-height: 1.7;
}

/* Gallery Toolbar */
.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.filter-btn--active {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}

.upload-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    color: var(--bg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.upload-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-item-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-item-delete {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-delete {
    opacity: 1;
}

.gallery-item-delete:hover {
    color: #ff6b6b;
    background: rgba(0, 0, 0, 0.7);
}

/* Video play overlay */
.gallery-item-video {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gallery-item-video-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty State */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 128px 0;
}

.gallery-empty svg {
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.empty-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.empty-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
}

.upload-btn-empty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--bg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: inherit;
}

/* Upload Modal */
.upload-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.upload-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.upload-modal-content {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.upload-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-modal-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.upload-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

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

.upload-modal-body {
    padding: 32px;
}

.upload-note {
    color: var(--gray-888);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.upload-wp-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--white);
    color: var(--bg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.upload-wp-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-content video {
    max-width: 90vw;
    max-height: 80vh;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-header {
        padding: 0 50px 40px;
    }

    .gallery-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .gallery-page {
        padding-top: 120px;
    }

    .gallery-header {
        padding: 0 25px 32px;
    }

    .gallery-title {
        font-size: 42px;
    }

    .gallery-toolbar {
        padding: 0 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 25px;
    }

    .gallery-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .gallery-header {
        padding: 0 20px 24px;
    }

    .gallery-title {
        font-size: 36px;
    }

    .gallery-grid {
        padding: 0 20px;
    }
}

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */

.project-detail {
    padding-top: 80px;
}

/* --- Project Hero --- */
.project-hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 60px 0;
    background: var(--black);
}

.project-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 1) 0%, rgba(15, 15, 15, 0.4) 50%, rgba(15, 15, 15, 0.15) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.project-hero-category {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-888);
}

.project-hero-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    line-height: 1;
}

.project-hero-zoom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 8px;
}

.project-hero-zoom:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-888);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 12px;
}

.project-back-link:hover {
    color: var(--white);
}

/* --- Project Description --- */
.project-description {
    padding: 80px 0;
    border-bottom: 1px solid var(--white-10);
}

.project-description-content {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-aaa);
}

/* --- Jetpack Stories: horizontal en desktop, vertical en móvil --- */
.project-description-content .wp-block-group,
.project-description-content .wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.project-description-content .wp-block-group > .wp-block-jetpack-story,
.project-description-content > .wp-block-jetpack-story,
.project-description-content .wp-block-column > .wp-block-jetpack-story,
.project-description-content .wp-block-group > .wp-block-embed,
.project-description-content > .wp-block-embed,
.project-description-content .wp-block-column > .wp-block-embed {
    flex: 1 1 160px;
    max-width: 280px;
    aspect-ratio: 3 / 4;
}

.project-description-content .wp-block-embed iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

.project-description-content .wp-block-embed .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-description-content .wp-block-column {
    flex: 0 1 auto;
}

.project-description-content .wp-block-columns {
    width: 100%;
}

@media (max-width: 640px) {
    .project-description-content .wp-block-group,
    .project-description-content .wp-block-columns {
        flex-direction: column;
        align-items: center;
    }

    .project-description-content .wp-block-group > .wp-block-jetpack-story,
    .project-description-content > .wp-block-jetpack-story,
    .project-description-content .wp-block-column > .wp-block-jetpack-story,
    .project-description-content .wp-block-group > .wp-block-embed,
    .project-description-content > .wp-block-embed,
    .project-description-content .wp-block-column > .wp-block-embed {
        width: 100%;
        max-width: 340px;
        height: auto;
        aspect-ratio: 3 / 4;
    }
}

/* --- Project Gallery --- */
.project-gallery {
    padding: 120px 0;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.project-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--card);
    border: 1px solid var(--white-10);
    border-radius: 2px;
    cursor: pointer;
}

.project-gallery-item--featured {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.project-gallery-item:hover img {
    transform: scale(1.05);
}

.project-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.project-gallery-item:hover .project-gallery-item-overlay {
    opacity: 1;
}

/* Empty state */
.project-gallery-empty {
    text-align: center;
    padding: 100px 0;
}

.project-gallery-empty svg {
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.project-gallery-empty .empty-title,
.project-gallery-empty .empty-desc {
    color: rgba(255, 255, 255, 0.3);
}

.project-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--bg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.project-upload-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* --- Project CTA --- */
.project-cta {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--white-10);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-cta-text {
    font-size: 20px;
    color: var(--gray-aaa);
    margin-bottom: 32px;
}

.project-cta-btn {
    display: inline-block;
    padding: 18px 48px;
    background: var(--white);
    color: var(--bg);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.project-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.project-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-888);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-cta-secondary:hover {
    color: var(--white);
}

/* --- Project Lightbox --- */
.project-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.project-lightbox.open {
    display: flex;
}

.project-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.project-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.project-lightbox-prev,
.project-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.project-lightbox-prev { left: 24px; }
.project-lightbox-next { right: 24px; }

.project-lightbox-prev:hover,
.project-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

.project-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.project-lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.project-lightbox-content video {
    max-width: 90vw;
    max-height: 85vh;
}

.project-lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    z-index: 10;
}

/* --- Project Detail Responsive --- */
@media (max-width: 1024px) {
    .project-hero-title {
        font-size: 56px;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-item--featured {
        grid-column: span 1;
        aspect-ratio: 16 / 9;
    }

    .project-gallery-item {
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 768px) {
    .project-detail {
        padding-top: 100px;
    }

    .project-hero {
        padding: 100px 0 40px 0;
    }

    .project-hero-content {
        padding-bottom: 0;
    }

    .project-hero-title {
        font-size: 42px;
    }

    .project-gallery {
        padding: 80px 0;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-item--featured {
        grid-column: span 1;
    }

    .project-lightbox-prev { left: 12px; }
    .project-lightbox-next { right: 12px; }
}

@media (max-width: 640px) {
    .project-hero-title {
        font-size: 36px;
    }

    .project-description {
        padding: 60px 0;
    }

    .project-cta {
        padding: 60px 0;
    }
}

/* ============================================================
   PLANS PAGE
   ============================================================ */

/* --- Plans Hero --- */
.plans-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    overflow: hidden;
}

.plans-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.3) 0%, var(--bg) 100%);
    z-index: 1;
}

.plans-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.plans-hero-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--white);
    margin-top: 16px;
    line-height: 1.1;
}

.plans-hero-desc {
    font-size: 16px;
    color: var(--gray-888);
    max-width: 520px;
    margin: 24px auto 0;
    line-height: 1.7;
}

/* --- Plans Notice --- */
.plans-notice {
    padding: 0 0 40px;
}

.plans-notice-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 200, 50, 0.25);
    background: rgba(255, 200, 50, 0.04);
    border-radius: 2px;
}

.plans-notice-box svg {
    flex-shrink: 0;
    color: rgba(255, 200, 50, 0.8);
    margin-top: 2px;
}

.plans-notice-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-aaa);
}

.plans-notice-box strong {
    color: var(--white);
}

/* --- Plans Grid --- */
.plans-section {
    padding: 40px 0 100px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* --- Plan Card --- */
.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: all 0.5s ease;
    position: relative;
}

.plan-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.plan-card--featured {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.plan-card--featured:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.plan-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--white);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 0 0 2px 2px;
}

.plan-card-header {
    padding: 32px 32px 0;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
}

.plan-card-body {
    padding: 24px 32px 32px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-aaa);
}

.plan-features li svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.plan-features li:not(.plan-excluded) svg {
    color: rgba(255, 255, 255, 0.7);
}

.plan-excluded {
    color: var(--gray-666) !important;
}

.plan-excluded svg {
    color: rgba(255, 255, 255, 0.2) !important;
}

.plan-card-footer {
    padding: 0 32px 32px;
}

/* --- Plan Button --- */
.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.plan-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.plan-btn--primary {
    background: var(--white);
    color: #000;
    border-color: var(--white);
}

.plan-btn--primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

/* --- Process Section --- */
.process-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 32px 16px;
    border-bottom: none;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.85;
}

.process-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-888);
    max-width: 560px;
}

/* --- Notes Section --- */
.plans-notes {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.note-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.note-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
}

.note-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-888);
}

.note-card strong {
    color: var(--gray-aaa);
}

/* --- Plans CTA --- */
.plans-cta {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plans-cta-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
}

.plans-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.plans-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.plans-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.plans-cta-secondary:hover {
    color: var(--white);
}

/* --- Plans Responsive --- */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card--featured {
        grid-column: span 2;
    }

    .plan-card--featured .plan-card-body {
        display: flex;
        gap: 0;
    }

    .plan-card--featured .plan-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 24px;
    }

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

    .process-step:not(:nth-child(3))::after {
        display: none;
    }

    .process-step:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .plans-hero-content {
        padding: 100px 0 60px;
    }

    .plans-hero-title {
        font-size: 42px;
    }

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

    .plan-card--featured {
        grid-column: span 1;
    }

    .plan-card--featured .plan-card-body {
        display: block;
    }

    .plan-card--featured .plan-features {
        flex-direction: column;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-step {
        display: grid;
        grid-template-columns: 60px 1fr;
        text-align: left;
        padding: 24px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-step-number {
        font-size: 28px;
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {
    .plans-hero-title {
        font-size: 36px;
    }

    .plans-cta-text {
        font-size: 20px;
    }

    .plans-notice-box {
        flex-direction: column;
        gap: 12px;
    }
}
