@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #0e8061;
    --bg-color: #00130c;
    --light-color: #e7fef6;
    --accent: #020907;
    --font-primary: 'bf', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --royal-glow: rgba(6, 40, 31, 0.4);
}

@font-face {
    font-family: "bf";
    src: url("fonts/bf.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-color);
    color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    position: relative;
}

/* Global gradient background (same as Web 2.0) – fixed layer behind content on all public pages */
body:not(.admin-page)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 90% 70% at 50% 20%, rgba(11, 94, 72, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse 70% 50% at 80% 80%, rgba(11, 94, 72, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 20% 60%, rgba(11, 94, 72, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(1, 17, 11, 0.98) 0%, var(--bg-color) 100%);
    pointer-events: none;
}

/* Default system cursor on all pages */

/* Focus visible (accessibility) */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .web2-hero-scroll i { animation: none; }
    .web2-outcomes-track { animation: none; }
    .web2-icon-float { animation: none; }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.preloader-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--light-color);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(231, 254, 246, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    animation: progressLoad 1.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressLoad {
    to {
        width: 100%;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(231, 254, 246, 0.1);
    z-index: 1001;
    pointer-events: none;
    border-radius: 0;
}

/* When model-nav-info exists, move scroll-progress to bottom */
.bottom-navbar:has(.model-nav-info) .scroll-progress {
    top: auto;
    bottom: 0;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease;
}

/* Custom cursor removed – default browser cursor is used */

/* Bottom Navigation Bar - Glass Effect */
.bottom-navbar {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    z-index: 1000;
    border-radius: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Ensure model-nav-info is visible and not covered */
.bottom-navbar:has(.model-nav-info) {
    z-index: 1001;
    overflow: visible;
}

.bottom-navbar.navbar-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(100px) !important;
    visibility: hidden !important;
}

/* Model Info at Top of Navbar (for Reels page) - Positioned ABOVE navbar */
.model-nav-info {
    position: fixed !important;
    bottom: calc(1rem + 80px) !important; /* Above bottom navbar */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 4rem) !important;
    max-width: 1200px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    background: rgba(1, 24, 16, 0.65) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-sizing: border-box !important;
    z-index: 1003 !important;
    flex-shrink: 0 !important;
    flex-wrap: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 4px 20px rgba(1, 24, 16, 0.8) !important;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(1, 24, 16, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 0;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Model Nav Buttons - styled like top buttons */
.model-nav-name-btn,
.model-nav-see-more-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(231, 254, 246, 0.1);
    color: var(--light-color);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.model-nav-see-more-btn:last-child {
    border-right: none;
}

.model-nav-name-btn::before,
.model-nav-see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.model-nav-name-btn span,
.model-nav-see-more-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-nav-name-btn:hover,
.model-nav-see-more-btn:hover {
    color: var(--bg-color);
}

.model-nav-name-btn:hover::before,
.model-nav-see-more-btn:hover::before {
    left: 0;
}

/* Mobile styles for model-nav-info */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .model-nav-info {
        bottom: calc(2rem + 80px) !important;
        width: calc(100% - 2rem) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 0 !important;
    }
    
    .model-nav-name-btn,
    .model-nav-see-more-btn {
        padding: 1rem 0.8rem !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        min-width: 0;
    }
    
    .model-nav-name-btn span,
    .model-nav-see-more-btn span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

.model-nav-expand-btn {
    background: rgba(231, 254, 246, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(231, 254, 246, 0.3);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    padding: 0;
}

.model-nav-expand-btn:hover {
    background: rgba(231, 254, 246, 0.25);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.model-nav-expand-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-profile {
    display: flex;
    align-items: center;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.menu-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    color: var(--light-color);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle-btn:hover {
    color: var(--primary-color);
}

.menu-plus {
    font-size: 1rem;
    font-weight: 300;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 0;
}

.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1rem;
}
.mobile-menu-social a {
    color: var(--light-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}
.mobile-menu-overlay.active .mobile-menu-social a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}
.mobile-menu-social a:hover {
    color: var(--primary-color);
}

.mobile-menu-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 420px;
}
.mobile-menu-login-link {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}
.mobile-menu-overlay.active .mobile-menu-login-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.mobile-menu-login-link:hover {
    color: var(--primary-color);
}

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

.menu-close-btn {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 0.8rem;
    color: var(--light-color);
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    padding: 0.5rem 0;
    text-align: center;
}

.mobile-menu-overlay.active .menu-close-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.menu-close-btn:hover {
    color: var(--primary-color);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    padding: 1.25rem;
}

.mobile-menu-link {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    padding: 0.35rem 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu-link:hover {
    color: var(--primary-color);
}

.mobile-menu-link.contact-btn {
    margin-top: 1.25rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    background: rgba(231, 254, 246, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(1, 24, 16, 0.2);
    border-radius: 0;
    color: var(--bg-color);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-link.contact-btn:hover {
    background: rgba(231, 254, 246, 1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
    padding: 8rem 4rem 12rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

/* Hero Section */
.hero-section {
    padding: 8rem 4rem 12rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 12.5vw, 10.5rem);
    color: var(--light-color);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -3px;
    text-shadow: 0 0 50px rgba(11, 94, 72, 0.2);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.85;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
/* Hero: three buttons as one unit (single border, icons) */
.hero-ctas-single {
    gap: 0;
    flex-wrap: nowrap;
}
.hero-ctas-group {
    display: inline-flex;
    border: 2px solid rgba(231, 254, 246, 0.4);
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
}
.hero-ctas-group .hero-cta-btn {
    margin-top: 0;
    border: none !important;
    border-radius: 0;
    border-right: 1px solid rgba(231, 254, 246, 0.25) !important;
    padding: 1rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-ctas-group .hero-cta-btn:last-child {
    border-right: none;
}
.hero-ctas-group .hero-cta-btn:hover {
    border-right: 1px solid rgba(231, 254, 246, 0.4);
}
.hero-ctas-group .hero-cta-btn:last-child:hover {
    border-right: none;
}
.hero-ctas-group .hero-cta-btn i.ti {
    font-size: 1.35rem;
    flex-shrink: 0;
    color: inherit;
    transition: filter 0.3s ease, color 0.3s ease;
}
.hero-ctas-group .hero-cta-btn:hover i.ti,
.hero-ctas-group .hero-cta-btn:hover i {
    color: var(--bg-color) !important;
    filter: brightness(0) !important;
}
.hero-ctas-single .hero-cta-btn {
    margin-top: 0;
    border-radius: 0;
}
.hero-ctas-single .hero-cta-btn:first-child {
    border-right: none;
}
.hero-ctas-single .hero-cta-btn:hover {
    border-right: 1px solid var(--light-color);
}
.hero-ctas-single .hero-cta-btn:last-child:hover {
    border-right: 1px solid var(--light-color);
}
.hero-section .submit-btn,
.hero-section .hero-cta-btn {
    margin-top: 0;
    display: inline-block;
    text-decoration: none;
}

.hero-urgency {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Services Orbit Section (after hero) – icons only, no backgrounds */
.services-orbit-section {
    padding: 2.5rem 2rem 3rem;
    min-height: 44vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-orbit-container {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 1;
    max-height: min(44vmin, 380px);
}

.services-orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.services-orbit-logo {
    width: clamp(56px, 14vmin, 100px);
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 0 16px rgba(11, 94, 72, 0.35));
}

.services-orbit-center-text {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--light-color);
    opacity: 0.65;
}

.services-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: orbit-spin 40s linear infinite;
    margin:-20px;
}

.services-orbit-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(var(--orbit-angle)) translateY(-48%);
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Counter-rotate so icons stay upright as the ring spins */
.services-orbit-item-inner {
    transform: rotate(calc(-1 * var(--orbit-angle)));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.services-orbit-icon {
    font-size: 2.65rem;
    color: var(--primary-color);
    opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(11, 94, 72, 0.4));
    transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
    animation: orbit-icon-glow 3s ease-in-out infinite;
}

.services-orbit-item:hover .services-orbit-icon,
.services-orbit-item:focus .services-orbit-icon {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(11, 94, 72, 0.7)) drop-shadow(0 0 30px rgb(11, 94, 72));
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit-icon-glow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(11, 94, 72, 0.4)); }
    50% { filter: drop-shadow(0 0 18px rgba(11, 94, 72, 0.6)); }
}

.services-orbit-cta {
    margin-top: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.services-orbit-cta:hover {
    color: var(--light-color);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .services-orbit-section {
        min-height: 42vh;
        padding: 2rem 1rem 2.5rem;
    }
    .services-orbit-container {
        max-height: min(42vmin, 300px);
    }
    .services-orbit-icon {
        font-size: 2.2rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    padding: 2rem 0;
}

/* Projects Section */
.projects-section {
    padding: 8rem 4rem;
}

.project-item {
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    transition: all 0.3s ease;
    position: relative;
}

.project-item:last-child {
    border-bottom: none;
}


.project-item:hover::after {
    width: 3px;
}

.project-image-link {
    text-decoration: none;
    display: block;
    width: 50%;
    flex-shrink: 0;
}

.project-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.project-image-link:hover .project-image-overlay {
    opacity: 1;
}

.project-view-text {
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
    filter: grayscale(20%) contrast(1.1);
}

.project-image-link:hover .project-img {
    filter: grayscale(0%) contrast(1.1);
    opacity: 0.95;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(11, 94, 72, 0.2);
    border-radius: 0;
    transition: all 0.3s ease;
}

.project-item:hover .project-category {
    background: rgba(11, 94, 72, 0.3);
}

.project-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.project-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--light-color);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    margin: 0;
}

.project-title-link:hover .project-title {
    color: var(--primary-color);
}

.project-link {
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.project-link span,
.project-link {
    position: relative;
    z-index: 1;
    color: inherit;
}

.project-link:hover,
.project-link:hover span {
    color: var(--bg-color);
    border-color: var(--light-color);
}

.project-link:hover::before {
    left: 0;
}

/* About Section */
.about-section {
    padding: 8rem 4rem;
    position: relative;
}

.about-section .section-content {
    position: relative;
}

.about-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.about-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--primary-color);
}

.about-label-number {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.about-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    opacity: 0.5;
}

.about-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    padding: 2rem 0;
    position: relative;
}

/* We do it all – full-service pillars */
.we-do-it-all {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(11, 94, 72, 0.2);
}
.we-do-it-all-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.we-do-it-all-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
}
.we-do-it-all-pillar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.9;
    padding: 0.5rem 1rem;
    background: rgba(1, 24, 16, 0.5);
    border: 1px solid rgba(11, 94, 72, 0.2);
    transition: border-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.we-do-it-all-pillar i {
    font-size: 1rem;
    color: var(--primary-color);
}
.we-do-it-all-pillar:hover {
    border-color: rgba(11, 94, 72, 0.5);
    opacity: 1;
    color: var(--light-color);
}

/* Clients Section */
.clients-section {
    padding: 8rem 4rem;
}

/* Models Section */
.models-section {
    padding: 8rem 4rem;
}

.models-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.models-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    opacity: 0.5;
}

.models-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 2rem;
    font-weight: 300;
    padding: 1.5rem 0;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.model-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0;
    position: relative;
}

.model-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.5;
}


.model-item:hover::after {
    width: 3px;
}

.model-image-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.model-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.model-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.model-image-link:hover .model-image-overlay {
    opacity: 1;
}

.model-view-text {
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
}

.model-image-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(1, 24, 16, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 0;
    color: var(--light-color);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    z-index: 3;
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.model-image-link:hover .model-img {
    filter: brightness(0.95);
    opacity: 0.95;
}

.model-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s ease;
}

.model-link:hover .model-name {
    color: var(--primary-color);
}

.model-name {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
    transition: all 0.3s ease;
}

.model-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.9;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(11, 94, 72, 0.2);
    border-radius: 0;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.model-item:hover .model-category {
    background: rgba(11, 94, 72, 0.3);
}

.profile-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
}

.clients-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    margin-bottom: 4rem;
}

/* Clients Logo Slider */
.clients-logo-slider {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    min-height: 120px;
}

.logo-slider-row {
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    min-height: 100px;
}

.logo-slider-row:last-child {
    margin-bottom: 0;
}

.logo-slider-track {
    display: flex;
    gap: 4rem;
    width: fit-content;
    will-change: transform;
    animation: slideLeft 32s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    padding: 1.5rem 3rem;
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.logo-item img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Animation for different rows - different speeds and directions */
.logo-slider-track-1 {
    animation: slideLeft 30s linear infinite;
}

.logo-slider-track-2 {
    animation: slideRight 35s linear infinite;
}

.logo-slider-track-3 {
    animation: slideLeft 40s linear infinite;
}

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

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

/* Collaboration Section */
.collaboration-section {
    padding: 8rem 4rem;
}

.collaboration-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.collaboration-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--primary-color);
}

.collaboration-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.collaboration-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    opacity: 0.5;
}

.collaboration-content {
    max-width: 800px;
}

.collaboration-partner {
    margin-bottom: 3rem;
}

.partner-link {
    text-decoration: none;
    color: var(--light-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.partner-link:hover {
    color: var(--primary-color);
}

.partner-name {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--light-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.partner-link:hover .partner-name {
    color: var(--primary-color);
}

.partner-tagline {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 1px;
}

.partner-logo {
    width: 20%;
    max-width: 200px;
    height: auto;
    margin-top: 1rem;
    display: block;
    transition: opacity 0.3s ease;
}

.partner-link:hover .partner-logo {
    opacity: 0.8;
}

.collaboration-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Services Section */
.services-section {
    padding: 8rem 4rem;
}

.services-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.services-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--primary-color);
}

.services-intro {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.85;
    max-width: 560px;
    margin: -2rem 0 3rem 0;
    line-height: 1.6;
}
.services-intro-book {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}
.services-intro-book:hover {
    opacity: 0.9;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-item {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.service-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.service-item:last-child {
    border-bottom: none;
}


.service-item:hover::after {
    width: 3px;
}

.service-number {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    color: var(--primary-color);
    font-weight: 400;
    min-width: 80px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-number {
    opacity: 1;
}

.service-content {
    flex: 1;
}

.service-title-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4.5vw, 3.15rem);
    color: var(--light-color);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: -1px;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-title-link:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.service-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}
.service-cta-row .service-cta-link {
    margin-top: 0;
}
.service-book-link {
    padding: 1.2rem 2rem !important;
    cursor: pointer;
}
.service-cta-link.service-book-link:hover {
    color: var(--bg-color);
    border-color: var(--light-color);
}

.service-cta-link {
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.service-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.service-cta-link span,
.service-cta-link {
    position: relative;
    z-index: 1;
    color: inherit;
}

.service-cta-link:hover,
.service-cta-link:hover span {
    color: var(--bg-color);
    border-color: var(--light-color);
}

.service-cta-link:hover::before {
    left: 0;
}

.service-image-link {
    text-decoration: none;
    display: block;
    width: 300px;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.service-image-link:hover .service-image-overlay {
    opacity: 1;
}

.service-view-text {
    color: var(--light-color);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-secondary);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.service-image-link:hover .service-img {
    filter: brightness(0.95);
    opacity: 0.95;
}

/* By the numbers / Why invest in digital (index) */
.numbers-section {
    padding: 6rem 4rem;
    background: transparent;
}
.numbers-content { max-width: 1000px; margin: 0 auto; }
.numbers-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.numbers-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--light-color);
    font-weight: 400;
    margin-bottom: 0.75rem;
}
.numbers-lead {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.numbers-card {
    background: rgba(1, 24, 16, 0.5);
    border: 1px solid rgba(11, 94, 72, 0.25);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.numbers-card:hover {
    border-color: rgba(11, 94, 72, 0.5);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.numbers-card-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.numbers-card-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
}
.numbers-card-suffix { font-size: 1.1rem; color: var(--primary-color); }
.numbers-card-label {
    display: block;
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.9;
    margin-top: 0.5rem;
    line-height: 1.35;
}
.numbers-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.numbers-bar-item {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 1rem;
    align-items: center;
}
.numbers-bar-label {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.9;
}
.numbers-bar-track {
    height: 8px;
    background: rgba(1, 24, 16, 0.6);
    border: 1px solid rgba(11, 94, 72, 0.2);
    overflow: hidden;
}
.numbers-bar-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.numbers-bar-pct {
    font-size: 0.9rem;
    color: var(--primary-color);
    min-width: 2.5rem;
    text-align: right;
}
.numbers-cta {
    text-align: center;
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
}
.numbers-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}
.numbers-cta a:hover { opacity: 0.85; }
.numbers-cta a:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 3px; }

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 4rem;
}
.testimonials-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.testimonials-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--light-color);
    margin-bottom: 3rem;
    line-height: 1.1;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: rgba(231, 254, 246, 0.03);
    border: 1px solid rgba(231, 254, 246, 0.12);
    padding: 2rem;
    margin: 0;
}
.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-color);
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-name {
    font-style: normal;
    font-weight: 600;
    color: var(--light-color);
    display: block;
}
.testimonial-role {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--light-color);
}

/* Sticky CTA bar - above bottom navbar so it doesn't block it */
.sticky-cta-bar {
    position: fixed;
    bottom: calc(1rem + 80px); /* above .bottom-navbar (1rem + navbar height) */
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(1, 24, 16, 0.98);
    border-top: 1px solid rgba(231, 254, 246, 0.15);
    padding: 0.75rem 1.5rem;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}
.sticky-cta-bar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.sticky-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}
.sticky-cta-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--light-color);
}
.sticky-cta-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.sticky-cta-btn {
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
}
.sticky-cta-btn:hover {
    background: var(--light-color);
    color: var(--bg-color);
}
.sticky-cta-btn-alt {
    background: transparent;
    border: 1px solid var(--light-color);
}
.sticky-cta-btn-alt:hover {
    background: rgba(231, 254, 246, 0.1);
    color: var(--light-color);
}
.sticky-cta-close-btn {
    padding-inline: 0.9rem;
    font-size: 0.9rem;
}
@media (max-width: 640px) {
    .sticky-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    .sticky-cta-actions {
        align-self: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .sticky-cta-bar { padding: 1rem; }
}

/* Footer CTA strip */
.footer-cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: rgba(11, 94, 72, 0.15);
    border-top: 1px solid rgba(231, 254, 246, 0.1);
}
.footer-cta-strip-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.95;
}
.footer-cta-strip-btn {
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
}
.footer-cta-strip-btn:hover {
    background: var(--light-color);
    color: var(--bg-color);
}

@media (max-width: 900px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .numbers-section { padding: 4rem 1.5rem; }
    .numbers-grid { grid-template-columns: 1fr; }
    .numbers-bar-item { grid-template-columns: 1fr; gap: 0.5rem; }
    .numbers-bar-pct { text-align: left; }
}
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .numbers-section { padding: 3rem 1rem; }
    .numbers-heading { font-size: clamp(1.75rem, 6vw, 2.25rem); }
    .numbers-card { padding: 1.25rem 1rem; }
    .numbers-card-value { font-size: 1.6rem; }
    .numbers-bar-label, .numbers-bar-pct { font-size: 0.85rem; }
}


/* Contact Section */
.contact-section {
    padding: 8rem 4rem;
    padding-bottom: calc(8rem + env(safe-area-inset-bottom, 0px));
}
.contact-section .section-content {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.contact-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--primary-color);
}

.contact-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    position: relative;
}

.contact-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    opacity: 0.5;
}

.contact-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 3rem;
    font-weight: 300;
    padding: 1.5rem 0;
    display: inline-block;
}

.contact-label-number {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-success-msg {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-form {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.contact-form .form-row-full {
    grid-template-columns: 1fr;
}

.contact-form input {
    padding: 1rem 0 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(231, 254, 246, 0.4);
    color: var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
    min-height: 48px;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--light-color);
    opacity: 0.5;
}
.contact-form input:hover,
.contact-form textarea:hover {
    border-bottom-color: rgba(231, 254, 246, 0.7);
}
.contact-form input:focus {
    border-bottom-color: var(--primary-color);
}
.contact-form textarea {
    padding: 1rem 0 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(231, 254, 246, 0.4);
    color: var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    min-height: 120px;
    resize: vertical;
}
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}
.submit-btn {
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.submit-btn span,
.submit-btn,
.submit-btn i.ti {
    position: relative;
    z-index: 1;
    color: inherit;
}
.submit-btn i.ti {
    transition: filter 0.3s ease;
}

.submit-btn:hover,
.submit-btn:hover span,
.submit-btn:hover i,
.submit-btn:hover i.ti {
    color: var(--bg-color) !important;
    border-color: var(--light-color);
}
.submit-btn:hover i.ti,
.submit-btn:hover i[class*="ti-"] {
    filter: brightness(0) !important;
}

.submit-btn:hover::before {
    left: 0;
}
.submit-btn:focus-visible {
    outline: 2px solid var(--light-color);
    outline-offset: 3px;
}
.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    padding: 4rem 4rem 2rem;
    border-top: 1px solid rgba(11, 94, 72, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-label {
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.footer-logo-link {
    display: block;
    margin-bottom: 1rem;
}
.footer-logo {
    width: 115px;
    height: auto;
    max-height: 115px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.2s ease;
}
.footer-logo-link:hover .footer-logo {
    opacity: 1;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.85;
    line-height: 1.5;
    max-width: 260px;
}

.footer-account {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-top: 1rem;
}
.footer-account-link {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.9;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-account-link:hover {
    color: var(--primary-color);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.2s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--light-color);
    font-size: 1rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(11, 94, 72, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--light-color);
    font-weight: 400;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--light-color);
    opacity: 0.6;
    font-weight: 300;
}

/* Cookie consent bar */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: rgba(1, 24, 16, 0.98);
    border-top: 1px solid rgba(11, 94, 72, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent-text {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.95;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    opacity: 0.9;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-consent-link {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.9;
    text-decoration: none;
}

.cookie-consent-link:hover {
    color: var(--primary-color);
}

.cookie-consent-accept {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-color);
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.cookie-consent-accept:hover {
    opacity: 0.95;
    background: var(--accent);
}

/* Legal pages (Privacy, Terms, Cookies) */
.legal-section {
    padding: 6rem 4rem 8rem;
    min-height: auto;
}
.legal-content {
    max-width: 720px;
    margin: 0 auto;
}
.legal-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--light-color);
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.legal-updated {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.7;
    margin-bottom: 2rem;
}
.legal-prose {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.95;
    line-height: 1.8;
}
.legal-prose h2 {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--light-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.legal-prose p {
    margin-bottom: 1rem;
}
.legal-prose ul {
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}
.legal-prose li {
    margin-bottom: 0.5rem;
}
.legal-prose a {
    color: var(--primary-color);
    text-decoration: underline;
}
.legal-prose a:hover {
    opacity: 0.9;
}
.business-info-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem 2rem;
    grid-template-columns: auto 1fr;
    max-width: 520px;
}
.business-info-list dt {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.business-info-list dd {
    margin: 0;
    color: var(--light-color);
    opacity: 0.95;
}
.business-info-list dd a {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .legal-section { padding: 4rem 1.5rem 6rem; }
    .legal-content { padding: 0 0.5rem; }
    .business-info-list { grid-template-columns: 1fr; gap: 0.25rem 0; }
    .business-info-list dd { margin-bottom: 0.75rem; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
    .section {
        padding: 6rem 2rem 10rem;
    }
    
    .project-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .project-image-link {
        width: 100%;
    }
    
    .project-image {
        width: 100%;
        height: 260px;
    }
    
    .service-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-image-link {
        width: 100%;
    }
    
    .service-image {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 2rem;
        margin-bottom: 2rem;
    }
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .cookie-consent-text { min-width: 0; }
}

@media (max-width: 768px) {
    .models-title::before,
    .about-title::before,
    .contact-title::before,
    .collaboration-title::before,
    .service-subservices-title::before {
        display: none;
    }
    
    .service-subservices-title {
        padding-left: 0;
    }
    
    .hero-subtitle {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-description,
    .about-description,
    .collaboration-description,
    .contact-description,
    .models-description,
    .project-detail-description,
    .service-detail-description,
    .model-bio-text,
    .subservice-description {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .bottom-navbar {
        bottom: 2rem;
        width: calc(100% - 2rem);
    }
    
    .bottom-nav-container {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .collaboration-section {
        padding: 6rem 2rem;
    }
    
    .collaboration-title {
        margin-bottom: 2rem;
    }
    
    .collaboration-partner {
        margin-bottom: 2rem;
    }
    
    .collaboration-description {
        font-size: 1rem;
    }
    
    .we-do-it-all { margin-top: 2rem; padding-top: 1.5rem; }
    .we-do-it-all-pillars { gap: 0.5rem 1rem; }
    .we-do-it-all-pillar { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
    .services-intro { margin: -1.5rem 0 2.5rem 0; font-size: 0.95rem; }
    
    .clients-logo-slider {
        max-width: 100%;
    }
    
    .logo-item {
        min-width: 150px;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .logo-slider-track {
        gap: 2rem;
    }
    
    .models-section {
        padding: 6rem 2rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .model-image {
        height: 400px;
    }
    
    .bottom-nav-container {
        padding: 0.75rem 1.5rem;
    }
    
    .profile-picture {
        width: 60px;
        height: 60px;
    }
    
    .menu-toggle-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .mobile-menu-link {
        font-size: 0.85rem;
    }
    
    .section {
        padding: 6rem 1.5rem calc(10rem + env(safe-area-inset-bottom, 0px));
    }
    
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 10rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-ctas-single {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .hero-ctas-group .hero-cta-btn {
        padding: 0.85rem 1rem;
    }
    .hero-ctas-group .hero-cta-btn i.ti {
        font-size: 1.2rem;
    }
    .hero-ctas-single .hero-cta-btn:first-child {
        border-right: 1px solid var(--light-color);
    }
    .hero-ctas-single .hero-cta-btn:hover {
        border-right: 1px solid var(--light-color);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mobile-menu-link {
        font-size: 0.85rem;
    }
    
    .contact-section {
        padding: 5rem 1.5rem calc(6rem + env(safe-area-inset-bottom, 0px));
    }
    
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 1rem calc(8rem + env(safe-area-inset-bottom, 0px));
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-image {
        height: 250px;
    }
    
    .contact-section {
        padding: 4rem 1rem calc(5rem + env(safe-area-inset-bottom, 0px));
    }
}

/* Project Detail Page */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.back-link span,
.back-link .back-link-text,
.back-link {
    position: relative;
    z-index: 1;
    color: inherit;
}

.back-link:hover,
.back-link:hover .back-link-text,
.back-link:hover span,
.back-link:hover i,
.back-link:hover * {
    color: var(--bg-color) !important;
    border-color: var(--light-color);
    -webkit-text-fill-color: var(--bg-color) !important;
}
.back-link:hover .back-link-text {
    color: var(--bg-color) !important;
    -webkit-text-fill-color: var(--bg-color) !important;
    opacity: 1;
}
.back-link i.ti,
.back-link i.fa,
.back-link i.fas {
    transition: filter 0.3s ease;
}
.back-link:hover i,
.back-link:hover i.ti,
.back-link:hover i.fa,
.back-link:hover i.fas,
.back-link:hover i[class*="fa-"],
.back-link:hover .ti,
.back-link:hover .fa,
.back-link:hover .fas {
    filter: brightness(0) !important;
    -webkit-text-fill-color: initial;
}
.back-link:hover::before {
    left: 0;
}

/* Legal pages: force back-link text/icon dark on hover so they stay visible on light fill */
.legal-section .back-link:hover,
.legal-section .back-link:hover *,
.legal-section .back-link:hover .back-link-text,
.legal-section .back-link:hover i,
.legal-section .back-link:hover i::before {
    color: var(--bg-color) !important;
    -webkit-text-fill-color: var(--bg-color) !important;
}
.legal-section .back-link:hover .back-link-text {
    color: var(--bg-color) !important;
    -webkit-text-fill-color: var(--bg-color) !important;
    opacity: 1 !important;
}
.legal-section .back-link:hover i,
.legal-section .back-link:hover i.fa,
.legal-section .back-link:hover i.fas {
    filter: brightness(0) !important;
    -webkit-text-fill-color: initial;
}
.legal-section .back-link:hover {
    border-color: var(--light-color);
}

.project-detail-header {
    margin-bottom: 4rem;
}

.project-detail-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.project-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--light-color);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(11, 94, 72, 0.2);
}

.project-detail-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    padding: 2rem 0;
    margin-top: 1rem;
}

.project-detail-hero {
    width: 100%;
    height: 500px;
    margin: 4rem 0;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-detail-hero:hover {
    background: transparent;
}

.project-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.project-detail-hero:hover .project-detail-hero-img {
    filter: brightness(0.95);
    opacity: 0.95;
}

.project-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.project-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.project-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
}



.project-info-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.project-info-value {
    font-size: 1rem;
    color: var(--light-color);
    font-weight: 400;
}

.project-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-detail-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.project-detail-paragraph {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.project-detail-gallery {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

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

.gallery-item-overlay i {
    color: var(--light-color);
    font-size: 2rem;
    transition: opacity 0.3s ease;
}

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


.gallery-item:hover {
    background: transparent;
}

.gallery-item-large {
    grid-column: 1 / -1;
    height: 500px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover .gallery-img {
    filter: brightness(0.95);
    opacity: 0.95;
}

.next-project-section {
    padding: 8rem 4rem;
}

.next-project-content {
    text-align: center;
}

.next-project-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.next-project-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--light-color);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.next-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.next-project-link:hover {
    color: var(--primary-color);
}

/* Model Detail Page */
/* Instagram Reels-style Container */
.model-reels-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-color);
    z-index: 1;
}

/* Ensure navbar is visible on Reels page */
body:has(.model-reels-container) .bottom-navbar {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
}

/* Top Buttons Container */
.model-reels-top-buttons {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    gap: 0;
    z-index: 100;
    align-items: stretch;
    background: rgba(1, 24, 16, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(231, 254, 246, 0.1);
}

/* Ensure model-nav-info is above top buttons when visible */
.bottom-navbar:has(.model-nav-info) {
    z-index: 1001;
}

.model-reels-filter-btn,
.model-reels-book-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(231, 254, 246, 0.1);
    color: var(--light-color);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.model-reels-book-btn:last-child {
    border-right: none;
}

.model-reels-filter-btn::before,
.model-reels-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.model-reels-filter-btn span,
.model-reels-book-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-reels-filter-btn:hover,
.model-reels-book-btn:hover {
    color: var(--bg-color);
}

.model-reels-filter-btn:hover::before,
.model-reels-book-btn:hover::before {
    left: 0;
}

.model-reels-filter-dropdown {
    position: fixed;
    top: 9rem; /* Below top buttons (4.5rem) + navbar (4.5rem) */
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(1, 24, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(231, 254, 246, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 101;
    display: flex;
    flex-direction: column;
    max-height: 50vh;
    overflow-y: auto;
}

.model-reels-filter-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    padding: 1rem 1.5rem;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(231, 254, 246, 0.1);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover,
.filter-option.active {
    background: rgba(11, 94, 72, 0.2);
    color: var(--primary-color);
}

/* Instagram Reels-style Feed */
.model-reels-feed {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    scroll-padding-bottom: 0;
    /* Enable mouse wheel scrolling on desktop */
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    /* Smooth scrolling for desktop */
    scrollbar-width: thin;
    scrollbar-color: rgba(231, 254, 246, 0.3) transparent;
    position: relative;
    will-change: scroll-position;
}

/* Custom scrollbar for desktop */
.model-reels-feed::-webkit-scrollbar {
    width: 6px;
}

.model-reels-feed::-webkit-scrollbar-track {
    background: transparent;
}

.model-reels-feed::-webkit-scrollbar-thumb {
    background: rgba(231, 254, 246, 0.3);
    border-radius: 3px;
}

.model-reels-feed::-webkit-scrollbar-thumb:hover {
    background: rgba(231, 254, 246, 0.5);
}

/* Footer at bottom of feed */
/* Footer removed from model reels page */

.model-reel-item {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Instagram-style Model Carousel */
.model-carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    gap: 0;
}

.model-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg-color);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pan-x;
    transition: opacity 0.2s ease;
}

.model-carousel-wrapper:active {
    cursor: grabbing;
}

.model-carousel-wrapper:active {
    cursor: grabbing;
}

.model-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.model-carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

.model-carousel-slide.active {
    opacity: 1 !important;
}

.model-carousel-media-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-carousel-media {
    display: block !important;
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
}

/* For reel format images - full height, auto width, centered */
.model-carousel-media-wrapper img.model-carousel-media {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

/* For videos - full cover */
.model-carousel-media-wrapper video.model-carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* For reel format - full height, width auto, centered */
.model-carousel-media[src*=".jpg"],
.model-carousel-media[src*=".jpeg"],
.model-carousel-media[src*=".png"],
.model-carousel-media[src*=".webp"],
.model-carousel-media[src*=".gif"] {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

/* Video styling - full cover */
.model-carousel-media[src*=".mp4"],
.model-carousel-media[src*=".webm"],
.model-carousel-media[src*=".mov"],
video.model-carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Loading spinner removed - no longer needed */

/* Spinner removed - no longer needed */

.model-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--light-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.model-carousel-wrapper:hover .model-carousel-nav {
    opacity: 0.8;
    pointer-events: all;
}

.model-carousel-prev {
    left: 1rem;
}

.model-carousel-next {
    right: 1rem;
}

.model-carousel-nav:hover {
    opacity: 1 !important;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.model-carousel-nav i {
    font-size: 1.5rem;
}

/* Instagram-style dots indicator */
.model-carousel-dots {
    position: absolute;
    bottom: calc(1rem + 100px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    z-index: 15;
    padding: 3.5rem 1rem;
    border-radius: 20px;
    pointer-events: none;
}

.model-carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    display: block;
}

.model-carousel-dot.active {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/* Removed old overlay - now using top panel for info display */


/* Model Info Panel - Slides down from top when See More is clicked */
.model-info-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(1, 24, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.model-info-panel.show {
    transform: translateY(0);
}

.model-info-panel-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: calc(4.5rem + 4.5rem + 2rem); /* Below top buttons + navbar */
    min-height: 100vh;
    box-sizing: border-box;
}

.model-info-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(231, 254, 246, 0.2);
}

.model-info-panel-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -1px;
    margin: 0;
}

.model-info-panel-close {
    background: transparent;
    border: 1px solid rgba(231, 254, 246, 0.3);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.model-info-panel-close:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.model-info-panel-body {
    color: var(--light-color);
}

.model-info-category {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.model-info-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(231, 254, 246, 0.1);
}

.model-info-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-info-spec-label {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.model-info-spec-value {
    font-size: 1.1rem;
    color: var(--light-color);
    font-weight: 400;
}

.model-info-bio {
    margin-bottom: 2.5rem;
}

.model-info-bio-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.model-info-bio-text {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.model-info-actions {
    margin-top: 2rem;
}

.model-info-book-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.model-info-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.model-info-book-btn span {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-info-book-btn:hover {
    color: var(--bg-color);
}

.model-info-book-btn:hover::before {
    left: 0;
}

.model-detail-name {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(11, 94, 72, 0.2);
    margin-bottom: 0.5rem;
}

.model-detail-category {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.model-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}


.model-spec-item:hover {
    background: transparent;
}

.model-spec-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.model-spec-value {
    font-size: 1rem;
    color: var(--light-color);
    font-weight: 400;
}

.model-detail-bio {
    margin-top: 1rem;
}

.model-bio-title {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.model-bio-text {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.model-detail-contact {
    margin-top: 2rem;
}

.model-contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--light-color);
    border: none;
    border-bottom: 1px solid var(--light-color);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin-top: 1.5rem;
}

.model-contact-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: 0;
}

.model-contact-btn span,
.model-contact-btn {
    position: relative;
    z-index: 1;
    color: inherit;
}

.model-contact-btn:hover,
.model-contact-btn:hover span {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.model-contact-btn:hover::before {
    width: 100%;
}

.model-detail-portfolio {
    margin-top: 6rem;
}

.model-portfolio-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--light-color);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.model-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

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

.portfolio-item-overlay i {
    color: var(--light-color);
    font-size: 2rem;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-overlay i {
    opacity: 1;
}


.portfolio-item:hover {
    background: transparent;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    filter: brightness(0.95);
    opacity: 0.95;
}

/* Article Detail Page */
.article-detail-section {
    padding: 8rem 4rem;
}

.article-detail-header {
    margin-bottom: 4rem;
}

.article-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date,
.article-category {
    font-weight: 300;
}

.article-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--light-color);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.article-detail-subtitle {
    font-size: 1.3rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    font-weight: 300;
}

.article-detail-hero {
    width: 100%;
    height: 420px;
    margin: 4rem 0;
    overflow: hidden;
    background: transparent;
}

.article-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-paragraph {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.9;
    font-weight: 300;
}

.article-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -1px;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-heading:first-of-type {
    margin-top: 0;
}

.next-article-section {
    padding: 8rem 4rem;
}

.next-article-content {
    text-align: center;
}

.next-article-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.next-article-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--light-color);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.next-article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.next-article-link:hover {
    color: var(--primary-color);
}

/* Article Detail Page */
.article-detail-section {
    padding: 8rem 4rem;
}

.article-detail-header {
    margin-bottom: 4rem;
}

.article-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-date,
.article-category {
    font-weight: 300;
}

.article-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--light-color);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.article-detail-subtitle {
    font-size: 1.3rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    font-weight: 300;
}

.article-detail-hero {
    width: 100%;
    height: 420px;
    margin: 4rem 0;
    overflow: hidden;
    background: transparent;
}

.article-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-paragraph {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.9;
    font-weight: 300;
}

.article-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -1px;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-heading:first-of-type {
    margin-top: 0;
}

.next-article-section {
    padding: 8rem 4rem;
}

.next-article-content {
    text-align: center;
}

.next-article-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.next-article-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--light-color);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.next-article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.next-article-link:hover {
    color: var(--primary-color);
}

/* Journal Page */
.journal-hero-section {
    padding: 8rem 4rem 4rem;
}

.journal-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.journal-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.journal-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--primary-color);
}

.journal-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.6rem, 9vw, 7.2rem);
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: lowercase;
    text-shadow: 0 0 30px rgba(11, 94, 72, 0.2);
}

.journal-hero-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    padding: 2rem 0;
    margin-top: 2rem;
}

.journal-posts-section {
    padding: 4rem 4rem 8rem;
}

.journal-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.journal-post {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 1rem;
    position: relative;
}

.journal-post::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.journal-post:hover {
    background: transparent;
}

.journal-post:hover::after {
    width: 3px;
}

.journal-post-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}


.journal-post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: transparent;
    position: relative;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.journal-post:hover .journal-post-image {
    background: transparent;
}

.journal-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.journal-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journal-post:hover .journal-post-overlay {
    opacity: 1;
}

.journal-post:hover .journal-post-img {
    opacity: 0.95;
}

.journal-post-read {
    color: var(--light-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.journal-post-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.journal-post-date {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journal-post-title {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
    margin: 0;
}

.journal-post:hover .journal-post-title {
    color: var(--primary-color);
}

.journal-post-excerpt {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.journal-post-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(11, 94, 72, 0.2);
    border-radius: 0;
}

/* Image Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 24, 16, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
    font-size: 1.35rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--light-color);
    color: var(--bg-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
    font-size: 1.35rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--light-color);
    color: var(--bg-color);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

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

/* Responsive for new pages */
@media (max-width: 1024px) {
    .project-detail-content {
        grid-template-columns: 1fr;
    }
    
    .project-detail-gallery {
        grid-template-columns: 1fr;
    }
    
    .model-detail-header {
        grid-template-columns: 1fr;
    }
    
    .model-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journal-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-detail-hero {
        height: 350px;
    }
    
    .model-detail-main-img {
        height: 420px;
    }
    
    .model-detail-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .model-detail-specs {
        grid-template-columns: 1fr;
    }
    
    .model-portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
}

/* Filter Bar & Styled Selects */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    flex-wrap: wrap;
}

.filter-bar label {
    color: var(--light-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    white-space: nowrap;
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    min-width: 200px;
    display: inline-block;
}

.custom-select-display {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(231, 254, 246, 0.3);
    color: var(--light-color);
    padding: 1rem 2rem 1rem 0;
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.custom-select-display::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e7fef6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-display::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-display:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border: 1px solid rgba(231, 254, 246, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.custom-select-wrapper.open .custom-select-dropdown {
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    opacity: 1;
    visibility: visible;
}

.custom-select-option {
    padding: 1rem;
    color: var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(231, 254, 246, 0.1);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(11, 94, 72, 0.2);
    color: var(--primary-color);
}

.custom-select-option.selected {
    background: rgba(11, 94, 72, 0.3);
    color: var(--primary-color);
    font-weight: 500;
}

.custom-select-option.selected::before {
    content: '✓ ';
    margin-right: 0.5rem;
    color: var(--primary-color);
}
.custom-select-display:focus-visible,
.custom-select-option:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.filter-bar select,
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    color: var(--light-color);
    padding: 1rem 3rem 1rem 0;
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e7fef6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    min-width: 200px;
    min-height: 48px;
    border-bottom: 1px solid rgba(231, 254, 246, 0.3);
    border-radius: 0;
}

.filter-bar select:hover,
.form-group select:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-bar select:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

/* Styled select options for all browsers */
.filter-bar select option,
.form-group select option {
    background: var(--bg-color);
    color: var(--light-color);
    padding: 1rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: none;
}

.filter-bar select option:hover,
.form-group select option:hover {
    background: rgba(11, 94, 72, 0.2);
    color: var(--primary-color);
}

.filter-bar select option:checked,
.form-group select option:checked {
    background: rgba(11, 94, 72, 0.3);
    color: var(--primary-color);
    font-weight: 500;
}

/* For Firefox */
@-moz-document url-prefix() {
    .filter-bar select,
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e7fef6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    }
}

/* For IE/Edge (legacy) */
.filter-bar select::-ms-expand,
.form-group select::-ms-expand {
    display: none;
}

/* Styled datalist input (for admin forms) */
.form-group input[list] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(231, 254, 246, 0.3);
    color: var(--light-color);
    padding: 1rem 0;
    font-size: 1rem;
    font-family: var(--font-secondary);
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-group input[list]:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

/* Category selector with add new option */
.category-select-wrapper {
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.category-select-wrapper select {
    flex: 1;
}

.category-select-wrapper .btn-add-category {
    padding: 1rem 1.5rem;
    background: rgba(11, 94, 72, 0.3);
    border: 0px solid var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-select-wrapper .btn-add-category:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-bar label {
        margin-bottom: 0.5rem;
    }
    
    .filter-bar select,
    .form-group select {
        width: 100%;
        min-width: auto;
    }
    
    .category-select-wrapper {
        flex-direction: column;
    }
    
    .category-select-wrapper .btn-add-category {
        width: 100%;
        justify-content: center;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

[data-pagination-content] {
    transition: opacity 0.3s ease;
}

.pagination-btn {
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.pagination-btn span,
.pagination-btn {
    position: relative;
    z-index: 1;
    color: inherit;
}

.pagination-btn:hover,
.pagination-btn:hover span {
    color: var(--bg-color);
    border-color: var(--light-color);
}

.pagination-btn:hover::before {
    left: 0;
}

.pagination-info {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: var(--font-secondary);
}

/* Related Articles Section */
.related-articles-section {
    padding: 4rem 4rem 8rem;
    background: transparent;
}

.related-articles-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--light-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: -1px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-article-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-article-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.related-article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: transparent;
}

.related-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.related-article-item:hover .related-article-img {
    opacity: 0.9;
}

.related-article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-article-date {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-article-title {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
}

.related-article-excerpt {
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.related-article-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Related Models Section */
.related-models-section {
    padding: 4rem 4rem 8rem;
    background: transparent;
}

.related-models-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--light-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: -1px;
}

.related-models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-model-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-model-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.related-model-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-model-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: transparent;
}

.related-model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.related-model-item:hover .related-model-img {
    opacity: 0.9;
}

.related-model-info {
    padding: 2rem;
    text-align: center;
}

.related-model-name {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.7vw, 1.8rem);
    color: var(--light-color);
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0 0 0.5rem 0;
}

.related-model-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Detail Page */
.service-detail-section,
.project-detail-section,
.model-detail-section,
.article-detail-section {
    padding: 6rem 4rem;
}

.service-detail-header {
    margin-bottom: 2.5rem;
    padding: 1.25rem 0;
}

.service-detail-number {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.service-detail-title {
    font-family: var(--font-primary);
    font-size: clamp(2.7rem, 7.2vw, 5.4rem);
    color: var(--light-color);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(11, 94, 72, 0.2);
}

.service-detail-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.service-detail-hero {
    width: 100%;
    height: 420px;
    margin: 2.5rem 0;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}



.service-detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 0;
}

.service-detail-hero:hover .service-detail-hero-img {
    filter: brightness(0.95);
    opacity: 0.95;
}

.service-detail-subservices {
    margin-top: 4rem;
}

.service-subservices-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--light-color);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    position: relative;
    padding-left: 2rem;
}

.service-subservices-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    opacity: 0.5;
}

.subservices-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.subservice-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.subservice-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.subservice-item:hover::after {
    width: 3px;
}

.subservice-item:last-child {
    border-bottom: none;
}

.subservice-number {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-color);
    font-weight: 400;
    min-width: 60px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.subservice-item:hover .subservice-number {
    opacity: 1;
}

.subservice-content {
    flex: 1;
}

.subservice-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.subservice-item:hover .subservice-title {
    color: var(--primary-color);
}

.subservice-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

/* Service detail: ROI & impact block */
.service-impact-block {
    margin-top: 4rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(231, 254, 246, 0.08);
}
.service-impact-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--light-color);
    font-weight: 400;
    margin-bottom: 0.75rem;
}
.service-impact-lead {
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 560px;
}
.service-impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.service-impact-card {
    background: rgba(1, 24, 16, 0.4);
    border: 1px solid rgba(11, 94, 72, 0.25);
    padding: 1.25rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-impact-card:hover {
    border-color: rgba(11, 94, 72, 0.5);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.service-impact-icon {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.service-impact-value {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
}
.service-impact-suffix { font-size: 1rem; color: var(--primary-color); }
.service-impact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--light-color);
    opacity: 0.9;
    margin-top: 0.35rem;
    line-height: 1.35;
}
.service-impact-cta {
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.9;
}
.service-impact-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.service-impact-cta a:hover { text-decoration: underline; }
.service-impact-cta a:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 3px; }
.service-impact-cta .service-impact-cta-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}
.service-impact-cta .service-impact-cta-link:hover { opacity: 0.9; }
.service-impact-block .service-get-offer-btn {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
}

.service-detail-cta .submit-btn,
.service-detail-cta .submit-btn-outline {
    display: inline-block;
    text-decoration: none;
}
.submit-btn-outline {
    background: transparent;
    color: var(--light-color);
    border: 2px solid rgba(231, 254, 246, 0.4);
}
.submit-btn-outline:hover {
    border-color: var(--light-color);
    background: rgba(231, 254, 246, 0.08);
}

@media (max-width: 640px) {
    .service-impact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .service-impact-block { padding: 3rem 1rem; }
    .service-impact-card { padding: 1.25rem 1rem; }
    .service-impact-value { font-size: 1.5rem; }
}

.service-detail-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 2.5rem 0;
}

.service-cta-text {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 300;
}

.other-services-section {
    padding: 6rem 4rem;
}

.other-services-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 5.4vw, 3.6rem);
    color: var(--light-color);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -1px;
    text-align: center;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.other-service-item {
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.other-service-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.5;
}

.other-service-item:hover {
    background: transparent;
}

.other-service-item:hover::after {
    width: 3px;
}

.other-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.other-service-number {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.other-service-item:hover .other-service-number {
    opacity: 1;
}

.other-service-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.other-service-item:hover .other-service-title {
    color: var(--primary-color);
}

.other-service-description {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
    
    .related-articles-grid,
    .related-models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .related-articles-section,
    .related-models-section {
        padding: 3rem 2rem 6rem;
    }
    
    .related-model-image {
        height: 260px;
    }
    
    /* Model Reels Mobile */
    .model-reels-top-buttons {
        flex-direction: row;
    }
    
    .model-reels-filter-btn,
    .model-reels-book-btn {
        padding: 1.4rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .bottom-nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    /* Consolidated with main mobile styles above */
    
    .model-reels-filter-dropdown {
        top: 4.5rem;
        max-height: 40vh;
    }
    
    
    .filter-option {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .model-info-panel {
        padding-top: 0;
    }
    
    .model-info-panel-content {
        padding: 1.5rem 1rem;
        padding-top: calc(4.5rem + 4.5rem + 1.5rem);
        max-width: 100%;
    }
    
    .model-info-panel-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .model-info-panel-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .model-info-panel-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .model-info-category {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .model-info-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .model-info-spec-item {
        gap: 0.3rem;
    }
    
    .model-info-spec-label {
        font-size: 0.75rem;
    }
    
    .model-info-spec-value {
        font-size: 1rem;
    }
    
    .model-info-bio {
        margin-bottom: 2rem;
    }
    
    .model-info-bio-title {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }
    
    .model-info-bio-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .model-info-actions {
        margin-top: 1.5rem;
    }
    
    .model-info-book-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    
    .model-reels-expand-btn {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .model-reels-expand-btn i {
        font-size: 1.2rem;
    }
    
    .model-carousel-nav {
        opacity: 0.8;
        pointer-events: all;
        width: 40px;
        height: 40px;
    }
    
    .model-carousel-prev {
        left: 0.5rem;
    }
    
    .model-carousel-next {
        right: 0.5rem;
    }
    
    .model-carousel-dots {
        bottom: calc(2rem + 80px);
        gap: 0.4rem;
    }
    
    .model-carousel-dot {
        width: 5px;
        height: 5px;
    }
    
    .model-carousel-dot.active {
        width: 20px;
        height: 5px;
    }
    
    .model-carousel-media-wrapper img.model-carousel-media {
        max-width: 100vw;
        bottom: 5%;
    }
    
    .subservice-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .other-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Model Nav Info Mobile */
    /* Consolidated with main mobile styles above */
    
    .model-info-panel {
        padding-top: 0;
    }
    
    .model-info-panel-content {
        padding: 1.5rem 1rem;
        padding-top: calc(4.5rem + 4.5rem + 1.5rem);
        max-width: 100%;
    }
    
    .model-info-panel-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .model-info-panel-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .model-info-panel-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .model-info-category {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .model-info-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .model-info-spec-item {
        gap: 0.3rem;
    }
    
    .model-info-spec-label {
        font-size: 0.75rem;
    }
    
    .model-info-spec-value {
        font-size: 1rem;
    }
    
    .model-info-bio {
        margin-bottom: 2rem;
    }
    
    .model-info-bio-title {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }
    
    .model-info-bio-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .model-info-actions {
        margin-top: 1.5rem;
    }
    
    .model-info-book-btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
}

/* ========== Web 2.0 Agency Page ========== */
.web2-page .preloader { display: none !important; }

.web2-page {
    position: relative;
}

.web2-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 8rem;
    overflow: hidden;
}
.web2-hero-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}
.web2-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
}
.web2-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.web2-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    line-height: 1.08;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -2px;
    text-shadow: 0 0 60px rgba(11, 94, 72, 0.25);
}
.web2-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--light-color);
    opacity: 0.88;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.web2-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.web2-hero-ctas-group {
    display: inline-flex;
    border: 2px solid rgba(231, 254, 246, 0.4);
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
}
.web2-hero-ctas-group .web2-btn {
    margin: 0;
    border: none !important;
    border-radius: 0;
    border-right: 1px solid rgba(231, 254, 246, 0.25) !important;
    padding: 1rem 1.25rem;
    min-width: 0;
}
.web2-hero-ctas-group .web2-btn:last-child {
    border-right: none !important;
}
.web2-hero-ctas-group .web2-btn:hover {
    border-right: 1px solid rgba(231, 254, 246, 0.4) !important;
}
.web2-hero-ctas-group .web2-btn:last-child:hover {
    border-right: none !important;
}
.web2-hero-ctas-group .web2-btn i.ti,
.web2-hero-ctas-group .web2-btn i {
    font-size: 1.35rem;
    margin: 0;
    color: inherit;
    transition: filter 0.3s ease, color 0.3s ease;
}
.web2-hero-ctas-group .web2-btn-primary:hover i.ti,
.web2-hero-ctas-group .web2-btn-primary:hover i,
.web2-hero-ctas-group .web2-btn-outline:hover i.ti,
.web2-hero-ctas-group .web2-btn-outline:hover i,
.web2-hero-ctas-group .web2-btn:hover i,
.web2-hero-ctas-group .web2-btn:hover i[class*="ti-"] {
    color: var(--bg-color) !important;
    filter: brightness(0) !important;
}
.web2-btn:hover i.ti,
.web2-btn:hover i,
.web2-btn:hover i[class*="ti-"] {
    color: var(--bg-color) !important;
    filter: brightness(0) !important;
}
.web2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-secondary);
}
.web2-btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}
.web2-btn-primary:hover {
    background: var(--light-color);
    color: var(--bg-color);
    border-color: var(--light-color);
    box-shadow: 0 0 30px rgba(231, 254, 246, 0.2);
}
.web2-btn-outline {
    background: transparent;
    color: var(--light-color);
    border-color: rgba(231, 254, 246, 0.4);
}
.web2-btn-outline:hover {
    border-color: var(--light-color);
    background: rgba(231, 254, 246, 0.06);
    color: var(--light-color);
}
.web2-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}
.web2-btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 0.95rem;
}
.web2-hero-scroll {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-color);
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
    pointer-events: none;
}
.web2-hero-scroll i { font-size: 1rem; animation: web2-bounce 2s ease-in-out infinite; }
@keyframes web2-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.web2-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.web2-hero-particles::before,
.web2-hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 94, 72, 0.15) 0%, transparent 70%);
    animation: web2-float 12s ease-in-out infinite;
}
.web2-hero-particles::before { top: 10%; left: 10%; animation-delay: 0s; }
.web2-hero-particles::after { bottom: 20%; right: 15%; animation-delay: -6s; animation-direction: reverse; }
@keyframes web2-float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(20px, -30px) scale(1.05); } 66% { transform: translate(-15px, 20px) scale(0.95); } }

/* Scroll reveal */
.web2-anim { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.web2-anim.is-visible { opacity: 1; transform: translateY(0); }

/* Icon float on hover */
.web2-icon-float { transition: transform 0.35s ease; }
.web2-build-card:hover .web2-icon-float { transform: translateY(-4px); animation: web2-icon-pulse 1.5s ease-in-out infinite; }
@keyframes web2-icon-pulse { 0%, 100% { filter: drop-shadow(0 0 12px rgba(11, 94, 72, 0.4)); } 50% { filter: drop-shadow(0 0 20px rgba(11, 94, 72, 0.7)); } }

/* Stats strip */
.web2-stats {
    padding: 2.5rem 2rem;
    background: transparent;
}
.web2-stats-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}
.web2-stat {
    text-align: center;
}
.web2-stat-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.web2-stat-num {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--light-color);
    font-weight: 400;
}
.web2-stat-suffix { font-size: 1.25rem; color: var(--primary-color); margin-left: 0.15rem; }
.web2-stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-color);
    opacity: 0.75;
    margin-top: 0.25rem;
}

/* Process slider */
.web2-process { padding: 6rem 2rem; }
.web2-slider-wrap {
    position: relative;
    max-width: 720px;
    margin: 2rem auto 0;
}
.web2-slider {
    overflow: hidden;
    border-radius: 0;
    border: none;
    background: transparent;
}
.web2-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.web2-slide {
    flex: 0 0 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.web2-slide-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border: 1px solid rgba(11, 94, 72, 0.3);
    transition: all 0.3s ease;
}
.web2-slide:hover .web2-slide-icon { background: rgba(11, 94, 72, 0.15); box-shadow: 0 0 25px rgba(11, 94, 72, 0.2); }
.web2-slide-num {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}
.web2-slide h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--light-color);
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.web2-slide p {
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}
.web2-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    color: var(--light-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: color 0.25s ease, opacity 0.25s ease;
    z-index: 2;
}
.web2-slider-btn:hover { color: var(--primary-color); opacity: 1; }
.web2-slider-prev { left: -60px; }
.web2-slider-next { right: -60px; }
.web2-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.web2-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(231, 254, 246, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.web2-slider-dot.is-active { background: var(--primary-color); border-color: var(--primary-color); }

/* Why cards icon */
.web2-why-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Impact & ROI section – charts, revenue, investment, SaaS */
.web2-impact { padding: 6rem 2rem; }
.web2-impact .web2-eyebrow,
.web2-impact .web2-heading,
.web2-impact .web2-impact-lead {
    text-align: center;
}
.web2-impact .web2-heading { display: block; }
.web2-impact-lead { max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
.web2-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto 3rem;
}
.web2-impact-cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 0;
}
.web2-impact-card {
    background: rgba(1, 24, 16, 0.5);
    border: 1px solid rgba(11, 94, 72, 0.25);
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.web2-impact-card:hover {
    border-color: rgba(11, 94, 72, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.web2-impact-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
.web2-impact-card-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
}
.web2-impact-card-suffix { font-size: 1.25rem; color: var(--primary-color); }
.web2-impact-card-label {
    width: 100%;
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.4;
}
.web2-impact-charts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 520px;
    min-height: 0;
}
.web2-chart-wrap {
    background: rgba(1, 24, 16, 0.6);
    border: 1px solid rgba(11, 94, 72, 0.2);
    border-radius: 4px;
    padding: 1.5rem 1.75rem;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.web2-chart-title {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-color);
    opacity: 0.95;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.web2-chart-canvas-wrap {
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.web2-chart-canvas {
    width: 100% !important;
    max-width: 100%;
    height: 220px !important;
    display: block;
}
.web2-impact-cta {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.web2-impact-cta-text {
    font-size: 1.1rem;
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.web2-impact-cta .web2-btn:focus-visible { outline: 2px solid var(--primary-color); outline-offset: 3px; }

/* Outcomes slider (horizontal scroll / marquee-style) */
.web2-outcomes { padding: 5rem 2rem; }
.web2-outcomes-slider {
    overflow: hidden;
    margin-top: 2rem;
}
.web2-outcomes-track {
    display: flex;
    gap: 2rem;
    animation: web2-marquee 25s linear infinite;
    width: max-content;
}
.web2-outcome {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(1, 24, 16, 0.4);
    border: 1px solid rgba(11, 94, 72, 0.25);
    white-space: nowrap;
    transition: all 0.3s ease;
}
.web2-outcome:hover { background: rgba(11, 94, 72, 0.15); border-color: rgba(11, 94, 72, 0.4); }
.web2-outcome i { font-size: 1.5rem; color: var(--primary-color); }
.web2-outcome span { font-size: 1rem; color: var(--light-color); }

/* Trust / social proof quote strip */
.web2-trust-strip {
    margin-top: 3.5rem;
    padding: 2rem 2.5rem;
    background: rgba(1, 24, 16, 0.4);
    border: 1px solid rgba(11, 94, 72, 0.2);
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.web2-trust-quote {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-color);
    opacity: 0.95;
    line-height: 1.7;
    margin: 0 0 1rem 0;
}
.web2-trust-attribution {
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 0.9;
    margin: 0;
}

@keyframes web2-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FAQ Accordion – centered */
.web2-faq { padding: 6rem 2rem; }
.web2-faq .section-content {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.web2-faq .web2-eyebrow,
.web2-faq .web2-heading {
    margin-left: auto;
    margin-right: auto;
}
.web2-faq .web2-heading { display: block; }
.web2-accordion { margin-top: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.web2-accordion-item {
    border-bottom: none;
}
.web2-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.05rem;
    font-family: var(--font-secondary);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}
.web2-accordion-trigger:hover { color: var(--primary-color); }
.web2-accordion-trigger i {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.web2-accordion-item.is-open .web2-accordion-trigger i { transform: rotate(180deg); }
.web2-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.web2-accordion-panel-inner {
    padding: 0 0 1.25rem 0;
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.7;
}

/* Questionnaire form */
.web2-questionnaire {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}
.web2-questionnaire-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}
.web2-questionnaire-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.web2-form-message {
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 0;
    line-height: 1.6;
}
.web2-form-message i { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.15rem; }
.web2-form-message p { margin: 0; }
.web2-form-success { background: rgba(11, 94, 72, 0.2); border: 1px solid rgba(11, 94, 72, 0.5); color: var(--light-color); }
.web2-form-success i { color: var(--primary-color); }
.web2-form-error { background: rgba(255, 100, 100, 0.1); border: 1px solid rgba(255, 100, 100, 0.35); color: var(--light-color); }
.web2-form-error i { color: #ff6b6b; }
.web2-form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
}
.web2-form-section-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--light-color);
    margin-bottom: 1.25rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.web2-form-section-title i { color: var(--primary-color); font-size: 1.2rem; flex-shrink: 0; }
.web2-form-hint {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.web2-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.web2-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.web2-form-group label {
    font-size: 0.85rem;
    color: var(--light-color);
    opacity: 0.9;
}
.web2-form-group label em { color: var(--primary-color); }
.web2-form-group input,
.web2-form-group select,
.web2-form-group textarea {
    padding: 0.9rem 1rem;
    background: rgba(1, 24, 16, 0.6);
    border: 1px solid rgba(11, 94, 72, 0.35);
    color: var(--light-color);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    min-height: 48px;
    border-radius: 0;
}
.web2-form-group input:hover,
.web2-form-group select:hover,
.web2-form-group textarea:hover {
    border-color: rgba(11, 94, 72, 0.5);
    background: rgba(1, 24, 16, 0.75);
}
.web2-form-group input:focus,
.web2-form-group select:focus,
.web2-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 94, 72, 0.25);
    background: rgba(1, 24, 16, 0.8);
}
.web2-form-group input::placeholder,
.web2-form-group textarea::placeholder {
    color: var(--light-color);
    opacity: 0.5;
}
.web2-form-group input:invalid:not(:placeholder-shown):not(:focus),
.web2-form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(255, 107, 107, 0.5);
}
.web2-form-group input:disabled,
.web2-form-group select:disabled,
.web2-form-group textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Theme-based dropdown (dark, primary accent) – single block so nothing overrides */
.web2-form-group select {
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(1, 24, 16, 0.9);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e7fef6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px 14px;
    padding: 0.9rem 2.75rem 0.9rem 1rem;
    min-height: 48px;
    line-height: 1.4;
}
.web2-form-group select::-ms-expand {
    display: none;
}
.web2-form-group select option {
    background: #011810;
    color: var(--light-color);
    padding: 0.5rem 1rem;
}
.web2-form-group select option:checked {
    background: rgba(11, 94, 72, 0.5);
    color: var(--light-color);
}

/* Custom themed dropdown (replaces browser option list so options fit the theme) */
.web2-custom-select {
    position: relative;
    width: 100%;
    min-height: 48px;
}
.web2-custom-select select {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}
.web2-custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 2.75rem 0.9rem 1rem;
    box-sizing: border-box;
    background: rgba(1, 24, 16, 0.9);
    border: 1px solid rgba(11, 94, 72, 0.35);
    color: var(--light-color);
    font-size: 1rem;
    font-family: var(--font-secondary);
    text-align: left;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e7fef6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px 14px;
    border-radius: 0;
}
.web2-custom-select-trigger:hover {
    border-color: rgba(11, 94, 72, 0.5);
    background-color: rgba(1, 24, 16, 0.95);
}
.web2-custom-select.is-open .web2-custom-select-trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 94, 72, 0.25);
    background-color: rgba(1, 24, 16, 0.95);
}
.web2-custom-select-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 2px;
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    background: #011810;
    border: 1px solid rgba(11, 94, 72, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10;
    display: none;
}
.web2-custom-select.is-open .web2-custom-select-list {
    display: block;
}
.web2-custom-select-option {
    padding: 0.75rem 1rem;
    color: var(--light-color);
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}
.web2-custom-select-option:hover {
    background: rgba(11, 94, 72, 0.35);
    color: var(--light-color);
}
.web2-custom-select-option.is-selected {
    background: rgba(11, 94, 72, 0.5);
    color: var(--light-color);
}
.web2-custom-select-trigger:focus-visible,
.web2-custom-select-option:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.web2-form-group textarea {
    min-height: 140px;
    resize: vertical;
    padding: 1rem;
}
.web2-form-full { grid-column: 1 / -1; }
.web2-form-actions .web2-btn {
    min-height: 52px;
}
.web2-form-actions .web2-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}
.web2-form-actions .web2-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Web2 checkboxes – button style (no visible checkbox), clickable with clear selected state */
.web2-form-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}
.web2-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    min-height: 52px;
    background: rgba(1, 24, 16, 0.5);
    border: 1px solid rgba(11, 94, 72, 0.3);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--light-color);
    transition: all 0.25s ease;
    border-radius: 0;
}
.web2-checkbox input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}
.web2-checkbox span {
    position: relative;
    z-index: 0;
    pointer-events: none;
}
.web2-checkbox:hover {
    border-color: rgba(11, 94, 72, 0.5);
    background: rgba(1, 24, 16, 0.7);
    color: var(--light-color);
}
.web2-checkbox:has(input:checked) {
    background: rgba(11, 94, 72, 0.25);
    border-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 0 0 1px var(--primary-color), inset 0 0 20px rgba(11, 94, 72, 0.15);
}
.web2-checkbox:has(input:checked) span {
    font-weight: 600;
}
.web2-checkbox:focus-within {
    box-shadow: 0 0 0 2px rgba(11, 94, 72, 0.5);
}
.web2-checkbox:active:has(input:checked) {
    transform: scale(0.98);
}
.web2-form-actions { margin-top: 2rem; }

.web2-build {
    padding: 6rem 2rem;
}
.web2-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.web2-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -1px;
}
.web2-lead {
    font-size: 1.05rem;
    color: var(--light-color);
    opacity: 0.85;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 3rem;
}
.web2-build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.web2-build-card {
    padding: 2rem;
    background: rgba(1, 24, 16, 0.35);
    border: 1px solid rgba(11, 94, 72, 0.2);
    transition: all 0.35s ease;
}
.web2-build-card:hover {
    background: rgba(11, 94, 72, 0.12);
    border-color: rgba(11, 94, 72, 0.45);
    box-shadow: 0 0 40px rgba(11, 94, 72, 0.1);
}
.web2-build-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}
.web2-build-title {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    color: var(--light-color);
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.web2-build-desc {
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Full Stack */
.web2-stack {
    padding: 6rem 2rem;
    background: transparent;
}
.web2-stack-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem 2rem;
}
.web2-stack-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.9;
}
.web2-stack-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Why Us */
.web2-why {
    padding: 6rem 2rem;
}
.web2-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.web2-why-card {
    padding: 2.5rem 2rem;
    border-left: 3px solid var(--primary-color);
    background: rgba(1, 24, 16, 0.3);
    transition: all 0.3s ease;
}
.web2-why-card:hover {
    background: rgba(11, 94, 72, 0.1);
    box-shadow: 0 0 35px rgba(11, 94, 72, 0.08);
}
.web2-why-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.7;
    display: block;
    margin-bottom: 0.5rem;
}
.web2-why-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.web2-why-card p {
    font-size: 0.95rem;
    color: var(--light-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Block */
.web2-cta-block {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}
.web2-cta-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}
.web2-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.web2-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 400;
}
.web2-cta-text {
    font-size: 1.05rem;
    color: var(--light-color);
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .web2-hero { padding: 5rem 1.5rem 7rem; }
    .web2-hero-scroll { bottom: 5.5rem; font-size: 0.75rem; }
    .web2-hero-title { font-size: clamp(2rem, 8vw, 2.75rem); }
    .web2-hero-sub { font-size: 1rem; }
    .web2-build, .web2-stack, .web2-why, .web2-cta-block, .web2-process, .web2-outcomes, .web2-faq, .web2-questionnaire { padding: 4rem 1.5rem; }
    .web2-hero-ctas { flex-direction: column; }
    .web2-hero-ctas-group .web2-btn { width: auto; max-width: none; min-height: 48px; padding: 0.9rem 1rem; }
    .web2-hero-ctas-group .web2-btn i.ti { font-size: 1.2rem; }
    .web2-btn { width: 100%; max-width: 280px; min-height: 52px; font-size: 0.9rem; padding: 1rem 2rem; }
    .web2-btn-large { min-height: 56px; font-size: 1rem; padding: 1.2rem 2rem; }
    .web2-stats-inner { gap: 2rem; }
    .web2-stat-icon { font-size: 1.75rem; }
    .web2-stat-num { font-size: 1.75rem; }
    .web2-stat-label { font-size: 0.95rem; }
    .web2-slider-prev { left: 0.5rem; }
    .web2-slider-next { right: 0.5rem; }
    .web2-slider-btn { width: 44px; height: 44px; font-size: 1.15rem; }
    .web2-slide { padding: 2.5rem 1.5rem; min-height: 260px; }
    .web2-slide h3 { font-size: 1.35rem; }
    .web2-slide p { font-size: 1rem; }
    .web2-eyebrow { font-size: 0.85rem; }
    .web2-heading { font-size: clamp(1.75rem, 5vw, 2.25rem); }
    .web2-form-group input,
    .web2-form-group select,
    .web2-form-group textarea { min-height: 52px; font-size: 1.05rem; padding: 1rem 1.25rem; }
    .web2-custom-select-trigger { min-height: 52px; padding: 1rem 2.75rem 1rem 1.25rem; font-size: 1.05rem; }
    .web2-custom-select-option { padding: 1rem 1.25rem; font-size: 1.05rem; }
    .web2-form-grid { grid-template-columns: 1fr; }
    .web2-form-checkboxes { grid-template-columns: 1fr; }
    .web2-form-section-title { font-size: 1.2rem; }
    .web2-accordion-trigger { padding: 1.25rem 0; font-size: 1.05rem; }
    .web2-impact { padding: 4rem 1.5rem; }
    .web2-impact-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; align-items: start; }
    .web2-impact-cards { justify-content: flex-start; }
    .web2-impact-charts { max-width: 100%; }
    .web2-impact-card-value { font-size: 1.75rem; }
    .web2-chart-wrap { min-height: 240px; padding: 1.25rem 1.5rem; }
    .web2-chart-canvas-wrap { min-height: 180px; }
    .web2-chart-canvas { height: 200px !important; }
    .web2-trust-strip { margin-top: 2.5rem; padding: 1.5rem 1.25rem; }
    .web2-trust-quote { font-size: 1rem; }
    .web2-build-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .web2-stack-list { grid-template-columns: 1fr; }
    .web2-why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .web2-hero { padding: 4rem 1rem 6rem; }
    .web2-hero-scroll { bottom: 4.5rem; font-size: 0.7rem; }
    .web2-hero-title { font-size: clamp(1.75rem, 9vw, 2.25rem); }
    .web2-build, .web2-stack, .web2-why, .web2-cta-block, .web2-process, .web2-outcomes, .web2-faq, .web2-questionnaire { padding: 3rem 1rem; }
    .web2-impact { padding: 3rem 1rem; }
    .web2-impact-lead { margin-bottom: 2rem; font-size: 0.95rem; }
    .web2-impact-card { padding: 1.25rem 1.25rem; }
    .web2-impact-card-value { font-size: 1.5rem; }
    .web2-chart-wrap { padding: 1rem 1.25rem; min-height: 220px; }
    .web2-chart-canvas-wrap { min-height: 160px; }
    .web2-chart-canvas { height: 180px !important; }
    .web2-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
    .web2-btn { max-width: 100%; }
    .web2-trust-quote { font-size: 0.95rem; }
    .web2-slide { padding: 2rem 1rem; min-height: 240px; }
    .web2-slide h3 { font-size: 1.2rem; }
}

/* ========== Audit (Website & Profile Analyzer) ========== */
.audit-page .section {
    align-items: flex-start;
    min-height: 0;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.audit-page .audit-hero {
    padding: 3rem 2rem 2rem;
}
.audit-page .audit-hero .section-content {
    width: 100%;
    max-width: 720px;
}
.audit-page .audit-hero .web2-eyebrow {
    display: block;
}
.audit-page .audit-hero .web2-heading {
    margin-bottom: 1rem;
}
.audit-page .audit-hero .web2-lead {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.65;
}
.audit-tools .section-content {
    max-width: 720px;
    width: 100%;
}
.audit-tools {
    padding: 2rem 2rem 3rem;
}
.audit-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.audit-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(1, 24, 16, 0.7);
    border: 1px solid rgba(231, 254, 246, 0.2);
    color: var(--light-color);
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.audit-tab:hover {
    background: rgba(11, 94, 72, 0.25);
    border-color: rgba(11, 94, 72, 0.5);
    color: var(--light-color);
}
.audit-tab.active {
    background: rgba(11, 94, 72, 0.4);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.audit-panel {
    display: none;
}
.audit-panel.active {
    display: block;
}
.audit-panel-desc {
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.6;
    font-size: 0.95rem;
}
.audit-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.audit-form .audit-input {
    flex: 1;
    min-width: 220px;
    padding: 0.9rem 1rem;
    background: rgba(1, 24, 16, 0.8);
    border: 1px solid rgba(231, 254, 246, 0.25);
    color: var(--light-color);
    font-size: 1rem;
    border-radius: 0;
}
.audit-form .audit-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(1, 24, 16, 0.95);
}
.audit-form .audit-input::placeholder {
    color: var(--light-color);
    opacity: 0.5;
}
.audit-form .web2-btn {
    flex-shrink: 0;
}
.audit-form-profile {
    flex-direction: column;
    align-items: stretch;
}
.audit-form-profile .audit-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.audit-form-profile .audit-form-group label {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.95;
}
.audit-textarea {
    min-height: 120px;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
}
.audit-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    margin: 1rem 0;
    padding: 1rem 0;
    font-size: 0.95rem;
}
.audit-loading[hidden] {
    display: none !important;
}
.audit-loading-spinner {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(11, 94, 72, 0.35);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    animation: audit-spin 0.8s linear infinite;
}
@keyframes audit-spin {
    to { transform: rotate(360deg); }
}
.audit-error {
    color: #fca5a5;
    padding: 1rem 1.25rem;
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.audit-error[hidden] {
    display: none !important;
}
.audit-result {
    margin-top: 1.5rem;
}
.audit-result[hidden] {
    display: none !important;
}
.audit-result.audit-result-visible {
    display: block !important;
}
.audit-result-card {
    padding: 2rem 2rem 2.25rem;
    background: rgba(1, 24, 16, 0.75);
    border: 1px solid rgba(11, 94, 72, 0.35);
    color: var(--light-color);
}
.audit-result-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
}
.audit-result-title i {
    color: var(--primary-color);
    flex-shrink: 0;
}
.audit-result-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(231, 254, 246, 0.12);
}
.audit-result-section:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.audit-result-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.audit-checks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.audit-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(231, 254, 246, 0.08);
    font-size: 0.95rem;
}
.audit-check-item:last-child { border-bottom: none; }
.audit-check-pass { color: #6ee7b7; font-size: 1.2rem; flex-shrink: 0; }
.audit-check-fail { color: #f87171; font-size: 1.2rem; flex-shrink: 0; }
.audit-check-label { flex: 1; color: var(--light-color); }
.audit-check-msg { color: var(--light-color); opacity: 0.75; font-size: 0.9rem; }
.audit-secrets { background: rgba(11, 94, 72, 0.12); border: 1px solid rgba(11, 94, 72, 0.25); padding: 1.25rem; margin-top: 1.5rem; }
.audit-secrets .audit-result-section-title { margin-bottom: 0.5rem; }
.audit-secrets-intro { margin: 0 0 0.75rem; font-size: 0.9rem; color: var(--light-color); opacity: 0.9; }
.audit-secrets-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.audit-secrets-list li { padding: 0.4rem 0; padding-left: 1.25rem; position: relative; font-size: 0.95rem; line-height: 1.5; color: var(--light-color); }
.audit-secrets-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary-color); }
.audit-secrets-cta { margin: 0; font-size: 0.9rem; }
.audit-secrets-cta a { color: var(--primary-color); text-decoration: underline; }
.audit-platform-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.audit-platform-radio { position: absolute; opacity: 0; pointer-events: none; }
.audit-platform-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; background: rgba(1, 24, 16, 0.6); border: 1px solid rgba(231, 254, 246, 0.2); color: var(--light-color); font-size: 0.85rem; cursor: pointer; transition: all 0.2s ease; }
.audit-platform-btn:hover { background: rgba(11, 94, 72, 0.25); border-color: rgba(11, 94, 72, 0.4); }
.audit-platform-radio:checked + .audit-platform-btn { background: rgba(11, 94, 72, 0.4); border-color: var(--primary-color); color: var(--primary-color); }
.audit-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.audit-form-row-2 label { font-size: 0.85rem; color: var(--light-color); margin-bottom: 0.35rem; display: block; }
.audit-input-small { max-width: 140px; }
.audit-field-hint { display: block; margin-top: 0.35rem; font-size: 0.8rem; color: var(--light-color); opacity: 0.7; }
.audit-profile-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.audit-profile-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(231, 254, 246, 0.2); }
.audit-profile-header-text { display: flex; flex-direction: column; gap: 0.25rem; }
.audit-profile-name { display: block; font-size: 1.1rem; color: var(--light-color); }
.audit-profile-username { font-size: 0.95rem; color: var(--light-color); opacity: 0.85; }
.audit-fetch-hint { margin: 0 0 1rem; padding: 0.75rem; background: rgba(231, 254, 246, 0.06); border-left: 3px solid var(--primary-color); font-size: 0.85rem; color: var(--light-color); opacity: 0.9; }
.audit-first-p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-color);
    opacity: 0.9;
}
.audit-result-meta {
    display: grid;
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.audit-result-meta dt {
    color: var(--light-color);
    opacity: 0.8;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.audit-result-meta dd {
    margin: 0;
    color: var(--light-color);
    line-height: 1.5;
}
.audit-result-meta ul {
    margin: 0.25rem 0 0;
    padding-left: 1.25rem;
}
.audit-result-meta ul li {
    margin-bottom: 0.25rem;
}
.audit-meta-count {
    opacity: 0.75;
    font-size: 0.85rem;
}
.audit-tips-title {
    font-size: 0.9rem;
    color: var(--light-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.audit-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.audit-tips-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}
.audit-tips-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.audit-tip-success { color: #6ee7b7; }
.audit-tip-success::before { background: #6ee7b7; }
.audit-tip-warning { color: #fcd34d; }
.audit-tip-warning::before { background: #fcd34d; }
.audit-tip-info { color: rgba(231, 254, 246, 0.95); }
.audit-tip-info::before { background: var(--primary-color); }
.audit-profile-link,
.audit-profile-bio-preview {
    margin-bottom: 0.75rem;
    color: var(--light-color);
    font-size: 0.95rem;
    line-height: 1.5;
}
.audit-profile-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(231, 254, 246, 0.2);
    color: var(--light-color);
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.6;
}
.audit-profile-cta a {
    color: var(--primary-color);
    text-decoration: underline;
}
.audit-profile-cta a:hover {
    opacity: 1;
}
.audit-cta {
    padding: 4rem 2rem;
    text-align: center;
}
.audit-cta .section-content {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.audit-cta .web2-lead {
    margin-bottom: 1.5rem;
}
.audit-cta .web2-btn {
    margin-left: 0;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
@media (max-width: 768px) {
    .audit-page .section { padding-top: 5rem; padding-bottom: 3rem; }
    .audit-tabs { flex-direction: column; }
    .audit-form { flex-direction: column; align-items: stretch; }
    .audit-form .audit-input { min-width: 0; }
    .audit-form .web2-btn { width: 100%; }
    .audit-result-card { padding: 1.25rem 1.5rem; }
    .audit-cta .web2-btn { margin-right: 0; width: 100%; max-width: 280px; }
    .audit-platform-buttons { flex-direction: column; }
    .audit-platform-btn { justify-content: center; }
    .audit-form-row-2 { grid-template-columns: 1fr; }
    .audit-input-small { max-width: 100%; }
}
