﻿/* ============================================
   ZEHEMREK ADMEDIA - STYLES
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #950D3B;
    --primary-dark: #6e0929;
    --primary-light: #c41448;
    --secondary: #DD1B33;
    --accent: #ff4d6d;
    --dark: #1a0008;
    --dark-2: #2a0010;
    --dark-3: #3d0018;
    --gray: #6b7280;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #950D3B 0%, #DD1B33 100%);
    --gradient-2: linear-gradient(135deg, #1a0008 0%, #3d0018 100%);
    --gradient-3: linear-gradient(135deg, #DD1B33 0%, #ff4d6d 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(149,13,59,0.35);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
/* ===== FONT: Inter ExtraBold 800 =====
 * Screenshot match: Inter weight 800, letter-spacing -0.025em, text-transform uppercase
 * This is the primary display font used across all headings.
 */
html {
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Inter', Arial, sans-serif;
    padding-right: 0 !important;
    box-sizing: border-box;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: #0a0008; }
html::-webkit-scrollbar-thumb { background: rgba(149,13,59,0.5); border-radius: 3px; }
html::-webkit-scrollbar-thumb:hover { background: rgba(149,13,59,0.8); }

a { text-decoration: none; }

/* ===== SCROLL TEXT REVEALS ===== */
.za-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.za-reveal.za-reveal-left {
    transform: translate3d(-36px, 20px, 0);
}
.za-reveal.za-reveal-right {
    transform: translate3d(36px, 20px, 0);
}
.za-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ===== HEADING TYPOGRAPHY � Inter 800, tight tracking (matches screenshot) ===== */
.hero-title,
.section-title,
.about-content-heading,
.about-hero-title span,
.cta-content h2,
.hww-reveal-text,
.newspaper-title,
.difference-heading h2,
.industries-header h2,
.footer-marquee-track span {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
}

*,*::before,*::after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    z-index: 99999;
    transition: transform 0.9s cubic-bezier(0.76,0,0.24,1);
    padding: 0;
}
.preloader.hidden {
    transform: translateY(-100%);
    pointer-events: none;
    visibility: hidden;
}

.preloader-bar-track {
    width: 100%;
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    box-sizing: border-box;
}
.preloader-segments {
    flex: 1;
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 28px;
    min-width: 0;
}
.preloader-segment {
    flex: 1;
    height: 100%;
    background: #1a0008;
    border-radius: 1px;
    transition: background 0.04s ease;
}
.preloader-segment.active { background: #950D3B; }
.preloader-percent {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    min-width: 48px;
    width: 48px;
    flex-shrink: 0;
    text-align: right;
    letter-spacing: 0.5px;
}
.preloader-wordmark {
    width: 100%;
    overflow: hidden;
    line-height: 0.82;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}
.preloader-wordmark span {
    display: block;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 800;
    font-size: 19vw;
    color: rgba(255,255,255,0.18);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    user-select: none;
    transition: none;
}

/* ===== CUSTOM CURSOR ===== */
html, body, a, button, [role="button"] { cursor: none !important; }
.cursor { display: none; }
.cursor-follower {
    width: 36px; height: 36px;
    border: 2.5px solid #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    will-change: transform;
    mix-blend-mode: difference;
}
.cursor-follower.hovered { width: 52px; height: 52px; }
.cursor-follower.page-enter {
    width: 72px; height: 72px;
    border-color: rgba(255,255,255,0.9);
    border-width: 1.5px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: rgba(255,255,255,0.08);
}
.cursor-follower.nav-hover { width: 48px; height: 48px; }
.cursor-enter-label {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
.cursor-enter-label.visible { opacity: 1; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}
/* Scrolled state */
.navbar.scrolled {
    background: transparent;
    box-shadow: none;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 84px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}
ul { list-style: none; padding: 0; margin: 0; }

/* Logo � always left */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    transition: border-color 0.35s ease;
    position: relative;
    z-index: 2;
    transform: translateY(8px);
}
.navbar.scrolled .logo {
    background: transparent;
    border-color: transparent;
}
.logo-img { height: 60px; width: 60px; border-radius: var(--radius-sm); display: block; }
.logo-text { display: flex; flex-direction: column; margin: 0; padding: 0; line-height: 1; }
.logo-name {
    font-size: 28px; font-weight: 800; color: #ffffff;
    margin: 0; line-height: 1.1; font-family: 'Inter', Arial, sans-serif;
    letter-spacing: -0.025em;
    transition: color 0.35s ease;
}
.logo-sub {
    font-size: 11px; margin-top: 3px; color: var(--primary);
    letter-spacing: 6px; text-transform: uppercase; font-weight: 800;
    font-family: 'Inter', Arial, sans-serif; transition: color 0.35s ease;
}
.navbar.scrolled .logo-name { color: #efeae8; }
.navbar.scrolled .logo-sub { color: var(--accent); }

/* Nav links � absolutely centered in the navbar */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 8px);
    padding: 5px 6px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled .nav-links {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 14px; font-weight: 500;
    position: relative;
    padding: 7px 20px;
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: 0.01em;
    white-space: nowrap;
    border-radius: 50px;
    transition: color 0.22s ease;
    overflow: hidden;
}
/* Top-line hover accent */
.nav-link::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
    opacity: 0;
}
.nav-link:hover::before { transform: translateX(-50%) scaleX(1); opacity: 1; }
.nav-link:hover, .nav-link.active {
    color: var(--secondary);
    background: transparent;
    box-shadow: none;
}
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.82); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
    color: var(--secondary);
    background: transparent;
}

.nav-item { position: relative; display: flex; align-items: center; height: 100%; }
.nav-right { display: flex; align-items: center; margin-left: auto; position: relative; z-index: 2; }
.nav-cta { display: none; }

/* ===== DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    transform: translateX(0) translateY(8px);
    background: rgba(26, 0, 8, 0.68);
    min-width: 210px;
    border-radius: 0;
    padding: 8px 0;
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    border: 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.nav-item.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(0) translateY(0); }
.dropdown-link {
    display: block; padding: 12px 20px;
    color: rgba(255,255,255,0.88);
    font-size: 14px; transition: 0.18s;
    font-family: 'Inter', Arial, sans-serif; font-weight: 600;
}
.dropdown-link:hover { background: rgba(221,27,51,0.16); color: var(--secondary); padding-left: 26px; }
.dropdown-menu, .dropdown-menu * { list-style: none; }

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 22px; height: 2px; background: white; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: white; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== NAVBAR LIGHT BACKGROUND STATE ===== */
/* Applied via JS when navbar overlaps a light-bg section (services, collabs, testimonials) */
.navbar.nav-light-bg .nav-links {
    background: rgba(255,255,255,0.72);
    border-color: rgba(0,0,0,0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.navbar.nav-light-bg .nav-link {
    color: rgba(10,0,8,0.82);
}
.navbar.nav-light-bg .nav-link:hover,
.navbar.nav-light-bg .nav-link.active {
    color: var(--secondary);
    background: transparent;
}
.navbar.nav-light-bg .nav-link::before {
    background: var(--primary);
}
.navbar.nav-light-bg .logo-name {
    color: #1a0008;
}
.navbar.nav-light-bg .logo-sub {
    color: var(--primary);
}
.navbar.nav-light-bg .hamburger span {
    background: #1a0008;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--dark); z-index: 999;
    transition: right 0.5s ease;
    display: flex; align-items: center; justify-content: center;
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu-content { text-align: center; width: 100%; padding: 40px 24px; box-sizing: border-box; }
.mobile-nav-links { list-style: none; padding: 0; margin: 0; }
.mobile-nav-links li { margin-bottom: 20px; }
.mobile-nav-link { font-size: 28px; font-weight: 700; color: white; transition: var(--transition); }
.mobile-nav-link:hover { color: var(--secondary); }
.mobile-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.mobile-nav-item-services.open .mobile-services-list {
    max-height: 500px;
}
.mobile-sub-link {
    display: block;
    padding: 8px 0;
    color: rgba(255,255,255,0.72);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.mobile-sub-link:hover { color: var(--secondary); }
.mobile-services-list li { margin-bottom: 0; }
.mobile-chevron {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.mobile-nav-item-services.open .mobile-chevron { transform: rotate(180deg); }
.mobile-social { margin-top: 40px; display: flex; gap: 20px; justify-content: center; }
.mobile-social a {
    width: 50px; height: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; transition: var(--transition);
}
.mobile-social a:hover { background: var(--gradient-1); border-color: transparent; }

/* ===== VIDEO BG ===== */
.video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.video-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 1; }

/* ===== HERO ===== */
.hero {
    height: 100vh; min-height: 100vh; max-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden; padding: 0;
}
.hero .container { display: block; margin-left: 30px; position: relative; z-index: 3; padding-bottom: 0; }
.hero-bg { position: absolute; top: -20%; left: 0; width: 100%; height: 140%; z-index: 0; will-change: transform; }
.hero-title {
    color: white;
     margin-bottom: 36px;
    font-family: 'oswald',sans-serif;
  font-size: clamp(0.3rem, 5vw, 5rem); font-weight: 600;
  line-height: .92; letter-spacing: .006em; 
}
.hero-title-highlight {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description {
    font-size: 18px; color: rgba(255,255,255,0.75);
    line-height: 1.7; margin-bottom: 0; max-width: 560px;
    font-family: 'Inter', Arial, sans-serif;
}
.hero-buttons { display: none; }
.hero-stats { display: none; }
.hero-scroll { display: none; }
.hero-visual { display: none; }
.hero-badge { display: none; }
.hero-title,
.hero-title-highlight,
.hero-title-highlight .typed-text {
    text-transform: uppercase;
}
.typed-cursor {
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: blink 0.7s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 36px; border-radius: 0;
    clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
    font-size: 15px; font-weight: 700; letter-spacing: 0.4px;
    text-transform: uppercase; transition: var(--transition);
    cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient-1); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); filter: brightness(1.1); }
.btn-outline { background: rgba(26, 0, 8, 0.68); color: white; border: 2px solid rgba(255,255,255,0.6); clip-path: none; border-radius: 0; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-white { background: white; color: var(--dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: brightness(0.96); }
.btn-outline-white { background: rgba(26, 0, 8, 0.68); color: white; border: 2px solid rgba(255,255,255,0.8); clip-path: none; border-radius: 0; }
.btn-outline-white:hover { background: white; color: var(--dark); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; clip-path: none; }
.btn i { font-size: 14px; transition: transform 0.25s cubic-bezier(0.4,0,0.2,1); }
.btn:hover i { transform: translateX(5px); }

/* ===== SECTION STYLES ===== */
.section-label {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 15px; font-size: 13px; font-weight: 600;
    color: var(--primary); text-transform: uppercase; letter-spacing: 2px;
}
.section-label.center { justify-content: center; }
.services .section-label, .portfolio .section-label { color: rgba(255,255,255,0.7); }
.services .section-title, .portfolio .section-title { color: var(--white); }
.services .section-subtitle, .portfolio .section-subtitle { color: rgba(255,255,255,0.75); }
.label-line { width: 40px; height: 2px; background: var(--gradient-1); }
.section-title { font-size: 42px; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.section-title.center { text-align: center; }
.highlight { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { text-align: center; color: var(--gray); font-size: 17px; max-width: 600px; margin: 0 auto 60px; line-height: 1.75; }

/* ===== ABOUT SECTION ===== */
.about-section { height: 300vh; position: relative; }
.about-panel { position: sticky; top: 0; left: 0; height: 100vh; width: 100%; overflow: hidden; }
.about-bg-layer { position: absolute; inset: 0; background: #950D3B; will-change: background-color; z-index: 0; }
.about-content-wrap {
    position: absolute; inset: 0;
    display: flex; flex-direction: row; align-items: stretch;
    z-index: 2; opacity: 1; will-change: opacity; overflow: hidden;
    padding-top: 0;
}

/* Left text column � 50% */
.about-text-col {
    flex: 0 0 50%; width: 50%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 2vw 0 3vw; height: 100%; box-sizing: border-box; overflow: hidden;
}
.about-content-heading {
    font-size: clamp(22px, 2.6vw, 42px);
    font-weight: 800; font-family: 'Inter', Arial, sans-serif;
    color: var(--primary);
    line-height: 1.2; letter-spacing: -1px;
    margin: 0 0 clamp(20px, 3vh, 40px) 0;
    will-change: transform, opacity;
}
.about-static-lines { width: 100%; }
.about-static-line {
    display: block;
    font-size: clamp(13px, 1.35vw, 22px);
    font-weight: 500; font-family: 'Inter', Arial, sans-serif;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.7);
    margin: 0;
    padding: 0;
    will-change: transform, opacity;
}

/* Legacy about-line kept for compat but unused */
.about-line { display: none; }
.about-lines-viewport { display: none; }
.about-lines-track { display: none; }

.about-pillars-row {
    display: flex; gap: 48px; justify-content: flex-start;
    margin-top: 52px; flex-wrap: wrap; opacity: 0; will-change: opacity, transform;
}
.about-pillar-item { display: flex; flex-direction: column; gap: 5px; min-width: 150px; }
.about-pillar-item strong { font-size: 14px; font-weight: 700; color: #fff; font-family: 'Inter', Arial, sans-serif; }
.about-pillar-item span { font-size: 12px; color: rgba(255,255,255,0.4); font-family: 'Inter', Arial, sans-serif; max-width: 180px; line-height: 1.5; }

/* Right media column � 50% */
.about-video-col {
    flex: 0 0 50%; width: 50%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    opacity: 0;
    will-change: opacity, transform;
    z-index: 1;
}
.about-media-frame {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
/* Blurred background image fills the column */
.about-bg-image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.55) saturate(1.2);
    transform: scale(1.08); /* prevents blur edge bleed */
    pointer-events: none;
}
/* Video inset centered on top with padding so blur bg shows on all sides */
.about-video-overlay-wrap {
    position: relative; z-index: 2;
    width: 82%;
    aspect-ratio: 16 / 9;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.65);
    flex-shrink: 0;
}
.about-video-inset {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    background: #000;
}
/* Legacy about-video no longer used */
.about-video { display: none; }

/* Homepage about section simplified */
.about-section {
    height: auto;
    position: relative;
    padding: 105px 0 96px;
    background: #fff;
    color: var(--dark);
}
.about-panel,
.about-bg-layer,
.about-content-wrap,
.about-video-col,
.about-media-frame,
.about-bg-image,
.about-video-overlay-wrap,
.about-video-inset,
.about-simple-grid,
.about-simple-card { display: none; }
.about-simple-wrap {
    max-width: 1180px;
    margin-left: 0;
    padding-left: clamp(32px, 5vw, 72px);
    padding-right: 24px;
}
.about-simple-intro {
    max-width: 720px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}
.about-simple-intro .section-label {
    justify-content: flex-start;
    margin-bottom: 22px;
}
.about-content-heading {
    color: var(--dark);
    font-size: clamp(34px, 4.2vw, 60px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0 0 28px;
    text-transform: uppercase;
}
.about-static-lines {
    width: min(100%, 720px);
}
.about-static-line {
    display: block;
    color: rgba(26,0,8,0.72);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.72;
    margin: 0;
    font-weight: 500;
}
/* ===== HOME ABOUT SPLIT LAYOUT ===== */
.about-split-home {
    height: auto !important;
    padding: 0 !important;
    background: #fff !important;
    overflow: hidden;
}
.about-split-home-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    max-height: 740px;
}
/* Left text panel */
.about-split-home-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 7vw, 110px) clamp(40px, 5vw, 80px) clamp(56px, 7vw, 110px) clamp(40px, 6vw, 90px);
    background: #fff;
}
.about-split-home-text .about-content-heading {
    color: var(--dark);
    font-size: clamp(30px, 3.6vw, 54px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin: 0 0 26px;
    text-transform: uppercase;
}
.about-split-home-text .about-static-lines {
    width: 100%;
}
.about-split-home-text .about-static-line {
    display: block;
    color: rgba(26, 0, 8, 0.68);
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.78;
    margin: 0 0 10px;
    font-weight: 500;
}
/* Right image panel */
.about-split-home-img {
    position: relative;
    overflow: hidden;
}
.about-split-img-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.about-split-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-split-home-img:hover .about-split-img-inner img {
    transform: scale(1.04);
}
/* Dark overlay so badge pops */
.about-split-img-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,0,8,0.28) 0%, transparent 60%);
    pointer-events: none;
}
/* Badge bottom-left of image */
.about-split-img-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gradient-1);
    color: #fff;
    padding: 16px 22px;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(149,13,59,0.38);
}
.about-split-img-badge .badge-num {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: -0.03em;
    line-height: 1;
}
.about-split-img-badge .badge-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .about-split-home-inner {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .about-split-home-img {
        height: 360px;
    }
    .about-split-home-text {
        padding: 60px 32px 48px;
    }
}
@media (max-width: 480px) {
    .about-split-home-img {
        height: 260px;
    }
    .about-split-img-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 16px;
        gap: 10px;
    }
}

/* ===== SERVICES SECTION ===== */
.services { padding: 80px 0 120px; background: #f5f0e8; will-change: background-color; }
.services .section-title, .services .section-label span:not(.label-line) { color: var(--dark); }
.services .section-subtitle { color: #555; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }

/* ===== SERVICE CARD ===== */
.svc-card { position: relative; display: block; height: 400px; border-radius: 12px; overflow: hidden; text-decoration: none; cursor: none; will-change: transform; transform: translateZ(0); }
.svc-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.svc-card:hover .svc-card-img { transform: scale(1.07); }
.svc-card-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
    background: linear-gradient(to top,rgba(10,0,8,0.94) 0%,rgba(10,0,8,0.35) 55%,rgba(10,0,8,0.0) 100%);
    transition: background 0.5s cubic-bezier(0.4,0,0.2,1);
}
.svc-card:hover .svc-card-overlay { background: linear-gradient(to top,rgba(10,0,8,0.97) 0%,rgba(10,0,8,0.88) 65%,rgba(10,0,8,0.5) 100%); }
.svc-card-title { font-size: 28px; font-weight: 800; color: #fff; margin: 0; font-family: 'Inter', Arial, sans-serif; line-height: 1.15; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.svc-card:hover .svc-card-title { transform: translateY(-10px); }
.svc-card-details { overflow: hidden; max-height: 0; opacity: 0; transform: translateY(18px); transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: max-height,opacity,transform; }
.svc-card:hover .svc-card-details { max-height: 180px; opacity: 1; transform: translateY(0); }
.svc-card-details p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.65; margin: 12px 0 14px; font-family: 'Inter', Arial, sans-serif; }
.svc-card-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: #fff; font-family: 'Inter', Arial, sans-serif; letter-spacing: 0.5px; text-transform: uppercase; }
.svc-card-link i { transition: transform 0.3s ease; }
.svc-card:hover .svc-card-link i { transform: translateX(5px); }

/* ===== COLLABORATIONS ===== */
.collabs-section { padding: 100px 0; background: #f5f0e8; overflow: hidden; }
.collabs-header { text-align: center; margin-bottom: 64px; }
.collabs-track-wrap { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%); mask-image: linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%); padding: 20px 0; }
.collabs-track { display: flex; align-items: center; gap: 72px; width: max-content; animation: collabs-scroll 40s linear infinite; will-change: transform; }
.collabs-track:hover { animation-play-state: paused; }
@keyframes collabs-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.collab-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 240px; height: 110px; opacity: 0.9; transition: opacity 0.3s ease, transform 0.3s ease; padding: 8px; box-sizing: border-box; }
.collab-logo:hover { opacity: 1; transform: scale(1.06); }
.collab-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.collab-logo:nth-child(1),.collab-logo:nth-child(2),.collab-logo:nth-child(3) { padding: 4px; }
.collab-logo:nth-child(4),.collab-logo:nth-child(5),.collab-logo:nth-child(6) { padding: 10px; }
.collab-logo:nth-child(7),.collab-logo:nth-child(10),.collab-logo:nth-child(11),.collab-logo:nth-child(12) { padding: 6px; }
.collab-logo:nth-child(15),.collab-logo:nth-child(16),.collab-logo:nth-child(17) { padding: 4px; }
/* Logos 8, 9 (8.png, 9.png) � visually boosted */
.collab-logo:nth-child(8),.collab-logo:nth-child(9) { padding: 0px; width: 270px; height: 126px; }
/* Logo 13 (13.png) � visually boosted */
.collab-logo:nth-child(13) { padding: 0px; width: 270px; height: 126px; }
/* Logo 15 (15.png is 14th child) � visually boosted */
.collab-logo:nth-child(14) { padding: 0px; width: 270px; height: 126px; }
/* Duplicates in the second set (offset by 17) */
.collab-logo:nth-child(25),.collab-logo:nth-child(26) { padding: 0px; width: 270px; height: 126px; }
.collab-logo:nth-child(30) { padding: 0px; width: 270px; height: 126px; }
.collab-logo:nth-child(31) { padding: 0px; width: 270px; height: 126px; }

/* ===== NEWSPAPER SECTION ===== */
.newspaper-section { padding: 120px 0; background: var(--dark); }
.newspaper-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.newspaper-video-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    /* Lock 16:9 ratio so clicking play never shifts layout */
    aspect-ratio: 16 / 9;
    width: 100%;
    contain: layout size;
}
.newspaper-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}
.newspaper-video:focus { outline: none; }
.newspaper-content { color: white; }
.newspaper-title { font-size: clamp(42px,5.5vw,76px); font-weight: 900; color: #fff; line-height: 1.0; letter-spacing: -2.5px; margin: 0 0 14px; font-family: 'Inter', Arial, sans-serif; white-space: nowrap; }
.newspaper-sub { font-size: 13px; font-weight: 700; color: var(--secondary); margin: 0 0 20px; font-family: 'Inter', Arial, sans-serif; text-transform: uppercase; letter-spacing: 3px; }
.newspaper-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 44px; font-family: 'Inter', Arial, sans-serif; }
.newspaper-papers { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); }
.newspaper-paper-item { display: flex; align-items: center; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: padding-left 0.3s ease; }
.newspaper-paper-item:hover { padding-left: 8px; }
.npi-num { font-size: 11px; font-weight: 800; color: var(--secondary); letter-spacing: 2px; font-family: 'Inter', Arial, sans-serif; flex-shrink: 0; width: 28px; }
.npi-text { display: flex; flex-direction: column; gap: 3px; }
.npi-text strong { display: block; font-size: 22px; font-weight: 900; color: #fff; font-family: 'Inter', Arial, sans-serif; letter-spacing: -0.5px; line-height: 1; }
.npi-text span { font-size: 13px; color: rgba(255,255,255,0.4); font-family: 'Inter', Arial, sans-serif; }

/* ===== HOW WE WORK � Horizontal Scroll ===== */
/* ===== HOW WE WORK - Horizontal Scroll ===== */
.hww-section { position: relative; background: #000; }
.hww-pin { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; background: #000; display: flex; flex-direction: column; }
.hww-track { display: flex; flex-direction: row; align-items: stretch; height: calc(100vh - 3px); width: max-content; will-change: transform; transform: translateZ(0); }
.hww-slide { width: 100vw; height: 100%; flex-shrink: 0; position: relative; background: #000; overflow: hidden; }

/* SLIDE TYPE 1: full-height image left, content centered in right half */
.hww-slide-1 .hww-s1-image { position: absolute; top: 0; left: 0; width: 45%; height: 100%; overflow: hidden; }
.hww-slide-1 .hww-s1-image img,
.hww-slide-1 .hww-s1-image .hww-img-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.hww-img-placeholder { background: linear-gradient(135deg,#2a1208 0%,#1a0a00 100%); }

/* Content block - vertically centered in right 55% */
.hww-s1-content {
    position: absolute;
    top: 50%; left: 48%; right: 6%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex; flex-direction: column; gap: 24px;
}

/* Title reveal */
.hww-reveal-line { overflow: hidden; display: block; }
.hww-reveal-text {
    display: block;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900; font-family: 'Inter', Arial, sans-serif;
    letter-spacing: -1.5px; color: #fff;
    transform: translateX(110%);
    opacity: 1;
    will-change: transform, opacity;
}
.hww-line-2 .hww-reveal-text { color: rgba(149,13,59,0.8); }

/* Body text below title */
.hww-s1-body { max-width: 360px; }
.hww-s1-body p, .hww-s2-body p {
    font-size: 16px; color: rgba(255,255,255,0.6);
    line-height: 1.8; font-family: 'Inter', Arial, sans-serif;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* SLIDE TYPE 2: small image upper-left area, body center-right, title lower */
.hww-slide-2 .hww-s2-image {
    position: absolute;
    top: 50%; left: 8%;
    transform: translateY(-68%);
    width: 30%; height: 46%;
    overflow: hidden; border-radius: 4px;
}
.hww-slide-2 .hww-s2-image img,
.hww-slide-2 .hww-s2-image .hww-img-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }

.hww-s2-body {
    position: absolute;
    top: 50%; left: 42%;
    transform: translateY(-128%);
    width: 32%; z-index: 3;
}

.hww-s2-title {
    position: absolute;
    bottom: 10%; left: 6%; right: 6%;
    z-index: 3; line-height: 0.92;
}
.hww-s2-title .hww-reveal-text { font-size: clamp(44px, 6.5vw, 86px); }

/* Progress bar */
.hww-progress-bar { height: 2px; width: 100%; background: rgba(255,255,255,0.1); flex-shrink: 0; position: absolute; bottom: 0; left: 0; z-index: 10; }
.hww-progress-fill { height: 100%; width: 0%; background: var(--gradient-1); will-change: width; }

@media (max-width: 768px) {
    .hww-slide-1 .hww-s1-image { width: 100%; height: 50%; }
    .hww-s1-content { left: 5%; right: 5%; top: auto; bottom: 60px; transform: none; }
    .hww-reveal-text { font-size: 36px; }
    .hww-slide-2 .hww-s2-image {
        top: 92px;
        left: 6%;
        width: 88%;
        height: 34%;
        transform: none;
    }
    .hww-s2-body {
        top: calc(92px + 34% + 24px);
        left: 6%;
        width: 88%;
        transform: none;
    }
    .hww-s2-body p {
        font-size: 15px;
        line-height: 1.62;
        letter-spacing: 0.35px;
    }
    .hww-s2-title {
        left: 6%;
        right: 6%;
        bottom: 64px;
    }
    .hww-s2-title .hww-reveal-text { font-size: 38px; }
}

/* ===== COUNTER ===== */
.counter-section { padding: 80px 0; background: var(--gradient-2); }
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.counter-item { text-align: center; color: white; padding: 30px; }
.counter-icon { width: 60px; height: 60px; background: rgba(149,13,59,0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.counter-icon i { font-size: 24px; color: var(--secondary); }
.counter-number { font-size: 48px; font-weight: 900; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.counter-item p { color: rgba(255,255,255,0.75); font-size: 15px; margin-top: 5px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 120px 0; background: white; }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { min-width: 100%; padding: 0 50px; }
.testimonial-quote { margin-bottom: 25px; }
.testimonial-quote i { font-size: 40px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.testimonial-text { font-size: 20px; color: var(--dark); line-height: 1.8; font-weight: 500; margin-bottom: 30px; max-width: 800px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 60px; height: 60px; background: var(--gradient-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; }
.author-info h4 { font-size: 18px; font-weight: 700; color: var(--dark); }
.author-info span { font-size: 13px; color: var(--gray); }
.testimonial-rating { margin-left: auto; }
.testimonial-rating i { color: #ffc107; font-size: 16px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testimonial-btn { width: 50px; height: 50px; border: 2px solid var(--gray-light); background: rgba(26, 0, 8, 0.68); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 16px; color: var(--dark); }
.testimonial-btn:hover { background: var(--gradient-1); border-color: transparent; color: white; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gray-light); cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--gradient-1); width: 30px; border-radius: var(--radius-full); }


/* ===== PRINT MEDIA SHOWCASE ===== */
.print-media-showcase {
    padding: 140px 0 160px;
    background: #fff;
    overflow: hidden;
}
.print-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
    gap: clamp(42px, 6vw, 96px);
    align-items: start;
}
.print-media-video-panel { min-width: 0; }
.print-video-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #120006;
    box-shadow: 0 28px 70px rgba(26,0,8,0.18);
}
.print-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(var(--print-video-zoom, 1));
    transition: transform 0.55s cubic-bezier(0.16,1,0.3,1), filter 0.4s ease;
}
.print-video-frame:hover .print-video { filter: saturate(1.08) contrast(1.04); }
.print-video-frame.is-expanded { position: fixed; inset: 0; z-index: 10000; width: 100vw; height: 100vh; aspect-ratio: auto; background: #000; display: flex; align-items: center; justify-content: center; box-shadow: none; }
.print-video-frame.is-expanded .print-video { width: 100%; height: 100%; object-fit: contain; }
.print-video-frame.is-expanded .print-video-actions { top: 22px; right: 22px; }
body.print-video-expanded { overflow: hidden; }
.print-video-actions { display: none !important; }
.print-video-actions-legacy {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.print-video-btn {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    color: var(--dark);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.print-video-btn:hover { transform: translateY(-2px); background: var(--secondary); color: #fff; }
.print-media-copy {
    color: var(--dark);
    padding-top: clamp(0px, 2vw, 16px);
}
.print-media-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    line-height: 1.2;
    text-transform: uppercase;
}
.print-media-copy h2 {
    margin: 0 0 20px;
    color: var(--dark);
    font-size: clamp(48px, 5.8vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-weight: 800;
}
.print-media-copy p {
    max-width: 460px;
    color: rgba(26,0,8,0.68);
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.7;
    margin: 0 0 28px;
}
/* ===== SLIDE-ARROW BUTTON (print media, about, cta) ===== */
.btn-slide-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
    padding: 6px 14px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.btn-slide-arrow .btn-label { position: relative; z-index: 1; }
.btn-slide-arrow .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, margin-left 0.3s ease;
    font-size: 11px;
}
.btn-slide-arrow:hover {
    border-color: var(--primary-dark);
    background: var(--primary);
    color: #fff;
}
.btn-slide-arrow:hover .btn-arrow {
    width: 18px;
    opacity: 1;
    margin-left: 12px;
}

/* Inverted variant for dark backgrounds (CTA section) */
.btn-slide-arrow.btn-slide-arrow--light {
    color: #fff;
    border-color: rgba(255,255,255,0.38);
}
.btn-slide-arrow.btn-slide-arrow--light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--dark);
}

/* Small variant — used in About Us section on home page */
.btn-slide-arrow--small {
    padding: 10px 22px !important;
    font-size: 11px !important;
    letter-spacing: 0.13em;
    border-width: 1.5px;
    align-self: flex-start;
    width: auto !important;
    display: inline-flex !important;
}
.btn-slide-arrow--small .btn-arrow {
    font-size: 11px;
}
.btn-slide-arrow--small:hover .btn-arrow {
    width: 16px;
    margin-left: 10px;
}

/* Large variant — used in CTA section and about page */
.btn-slide-arrow--large {
    padding: 16px 36px;
    font-size: 14px;
    letter-spacing: 0.16em;
    border-width: 2px;
}
.btn-slide-arrow--large .btn-arrow {
    font-size: 14px;
}
@media (max-width: 640px) {
    .btn-slide-arrow--large {
        padding: 14px 28px;
        font-size: 13px;
    }
}
@media (max-width: 400px) {
    .btn-slide-arrow--large {
        padding: 13px 22px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
}

/* Legacy alias kept for backward compat */
.print-media-cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    margin-top: 36px;
    margin-bottom: 36px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.print-media-cta .btn-label { position: relative; z-index: 1; }
.print-media-cta .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, margin-left 0.3s ease;
    font-size: 11px;
}
.print-media-cta:hover {
    border-color: var(--primary-dark);
    background: var(--primary);
    color: #fff;
}
.print-media-cta:hover .btn-arrow {
    width: 18px;
    opacity: 1;
    margin-left: 12px;
}
.print-publication-list {
    display: grid;
    gap: 12px;
    max-width: 560px;
}
.print-publication {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(26,0,8,0.14);
    color: var(--dark);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.print-publication:last-child { border-bottom: 1px solid rgba(26,0,8,0.14); }
.print-publication:hover { transform: translateX(10px); color: var(--secondary); border-color: rgba(221,27,51,0.42); }
.print-publication span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
}
.print-publication strong {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-weight: 700;
}
/* ===== CTA ===== */
.cta-section { padding: 100px 0; background: var(--gradient-2); position: relative; overflow: hidden; z-index: 2; }
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cta-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 80%,rgba(255,255,255,0.08) 0%,transparent 60%),radial-gradient(circle at 80% 20%,rgba(255,255,255,0.08) 0%,transparent 60%); }
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-content h2 { font-size: 44px; font-weight: 800; color: white; margin-bottom: 20px; }
.cta-content p { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 35px; line-height: 1.75; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ===== ABOUT VIDEO PAGE ===== */
.about-video-page { position: relative; overflow: visible; background: rgba(26, 0, 8, 0.68); color: #fff; }
body.about-page-body { background: #080004; }
.about-video-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: #080004; pointer-events: none; }
.about-video-bg video { width: 100%; height: 100%; object-fit: cover; display: block; filter: none; transform: scale(1); }
.about-video-tint { display: none; }
.about-immersive-hero { min-height: 92vh; display: flex; align-items: center; justify-content: center; padding: 70px 24px 24px; position: relative; }
.about-hero-title { text-align: center; will-change: transform, opacity; }
.about-hero-title span { display: block; font-family: 'Inter', Arial, sans-serif; font-size: clamp(42px, 8vw, 118px); font-weight: 800; letter-spacing: -0.025em; line-height: 0.92; color: #f5f0e8; }
.about-hero-title p { display: inline-block; margin-top: 18px; color: rgba(245,240,232,0.82); font-size: clamp(15px, 1.5vw, 22px); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: underline; text-decoration-color: var(--secondary); text-decoration-thickness: 2px; text-underline-offset: 8px; }
.about-split-story { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.78fr); gap: clamp(38px, 6vw, 92px); width: min(1180px, calc(100% - 48px)); height: 100vh; margin: 0 auto; padding: 0; align-items: stretch; overflow: hidden; }
.about-story-left { position: relative; height: 100vh; display: flex; align-items: flex-start; padding-top: clamp(60px, 10vh, 120px); }
.about-story-copy { position: absolute; width: min(520px, 100%); opacity: 0; transform: translateY(42px); pointer-events: none; will-change: transform, opacity; }
.about-story-copy.is-active { position: absolute; opacity: 1; transform: translateY(0); pointer-events: auto; }
.about-story-count { display: block; color: rgba(245,240,232,0.66); font-size: 12px; font-weight: 900; letter-spacing: 0.18em; margin-bottom: 14px; }
.about-kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--secondary); font-size: 11px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.about-kicker::before { content: ''; width: 42px; height: 2px; background: var(--secondary); }
.about-story-copy h2 { font-family: 'Inter', Arial, sans-serif; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.03; letter-spacing: -0.5px; color: #fff; margin-bottom: 20px; }
.about-story-copy p { max-width: 500px; color: rgba(255,255,255,0.76); font-size: clamp(14px, 1.18vw, 16px); line-height: 1.7; }
.about-story-right { height: 100vh; display: flex; flex-direction: column; gap: 28px; padding: 0; will-change: transform; }
.about-story-image { flex: 0 0 62vh; margin: 0; height: 62vh; overflow: hidden; border-radius: 0; opacity: 0.55; transform: scale(0.96); will-change: transform, opacity; }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.86) contrast(1.05); }
.about-story-image.is-centered { opacity: 1; transform: scale(1); }

/* ===== WHAT MAKES US DIFFERENT ===== */
.difference-network {
    position: relative;
    overflow: hidden;
    padding: 92px 0 104px;
    background: #f5f0e8;
    color: var(--dark);
}
.difference-network .container { position: relative; z-index: 2; }
.difference-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 42px;
}
.difference-heading .about-kicker { color: var(--primary); }
.difference-heading h2 {
    max-width: 720px;
    color: var(--dark);
    font-size: clamp(34px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}
.difference-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 5vw, 64px);
}
.difference-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 72px);
    align-items: start;
}
.difference-point {
    position: relative;
    width: 100%;
    padding: 8px 0 12px;
    transition: transform 0.55s cubic-bezier(0.16,1,0.3,1), opacity 0.55s ease;
}
.difference-from-left { text-align: left; }
.difference-from-right { text-align: right; }
.difference-from-right p { margin-left: auto; }
.network-index {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
}
.difference-point h3 {
    margin: 10px 0 8px;
    color: var(--dark);
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}
.difference-point p {
    color: var(--dark);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.45;
    max-width: 56ch;
}

/* ===== INDUSTRIES ===== */
.industries-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f5f0e8;
    color: var(--dark);
}
.industries-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(149,13,59,0.06), transparent 42%, rgba(149,13,59,0.04)),
        radial-gradient(circle at 12% 10%, rgba(255,255,255,0.65), transparent 26%);
    pointer-events: none;
}
.industries-header {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto 56px;
    text-align: center;
}
.industries-header .section-label { color: var(--primary); margin-bottom: 14px; }
.industries-header .section-title { color: var(--dark); margin-bottom: 0; }
.industries-layout {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}
.industry-track {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    width: calc(100vw - 24px);
    margin: 0 auto;
    gap: 12px;
}

/* Row 1: 4 cards — each spans 2 of 8 columns */
.industry-card:nth-child(1) { grid-column: span 2; }
.industry-card:nth-child(2) { grid-column: span 2; }
.industry-card:nth-child(3) { grid-column: span 2; }
.industry-card:nth-child(4) { grid-column: span 2; }

/* Row 2: 3 cards centered — 1 empty col on each side */
.industry-card:nth-child(5) { grid-column: 2 / span 2; }
.industry-card:nth-child(6) { grid-column: 4 / span 2; }
.industry-card:nth-child(7) { grid-column: 6 / span 2; }
.industry-card {
    position: relative;
    min-height: clamp(310px, 25vw, 430px);
    overflow: hidden;
    background: #1a0008;
    border: 0;
    isolation: isolate;
    cursor: default;
}
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(10,0,8,0.94) 0%, rgba(10,0,8,0.45) 52%, rgba(10,0,8,0.04) 100%);
    pointer-events: none;
}
.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #950D3B, #DD1B33);
    transition: width 520ms cubic-bezier(0.4,0,0.2,1);
}
.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    z-index: 0;
    filter: saturate(0.74) contrast(1.05) brightness(0.72);
    transition: transform 650ms cubic-bezier(0.4,0,0.2,1), filter 420ms ease;
}
/*
 * Industry card layout — correct approach:
 *
 * .industry-card-content  — covers the full card, no overflow hidden here
 * h3                      — absolutely pinned bottom-left, always visible
 * .ic-reveal              — absolutely pinned so its BOTTOM aligns just below
 *                           the h3 baseline. On hover it slides UP into view.
 *                           The card itself has overflow:hidden to clip it.
 *
 * Result: title stays bottom-left at rest. On hover, description rises from
 * below the title and the title rises with it, smoothly.
 */

/* Card already has overflow:hidden from the base rule above — good. */

.industry-card-content {
    position: absolute;
    inset: 0;                       /* full card coverage */
    z-index: 3;
    pointer-events: none;           /* children handle events */
}

/* h3: always visible, pinned to bottom-left */
.industry-card h3 {
    position: absolute;
    bottom: clamp(22px, 2.1vw, 32px);
    left: clamp(22px, 2.1vw, 32px);
    right: clamp(22px, 2.1vw, 32px);
    color: #f5f0e8;
    font-size: clamp(20px, 2.1vw, 30px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
    /* Slides up on hover alongside the reveal block */
    transition: transform 540ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    z-index: 2;
}

/* .ic-reveal: number + description, sits below the card bottom edge at rest */
.ic-reveal {
    position: absolute;
    left: clamp(22px, 2.1vw, 32px);
    right: clamp(22px, 2.1vw, 32px);
    /* Align the TOP of ic-reveal to just below the card bottom —
       it will slide upward on hover. translateY(100%) pushes it
       fully below the card's visible area (card has overflow:hidden). */
    bottom: 0;
    transform: translateY(100%);
    transition: transform 540ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    z-index: 1;
    padding-bottom: clamp(22px, 2.1vw, 32px);
}

.industry-card-num {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.industry-card p {
    max-width: 30ch;
    color: rgba(245, 240, 232, 0.82);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 14px;
}

/* ── Hover: reveal slides up, title moves up by same amount ── */
.industry-card:hover .ic-reveal,
.industry-card:focus-within .ic-reveal {
    transform: translateY(0);
}

/* Title shifts up by the height of the reveal block */
.industry-card:hover h3,
.industry-card:focus-within h3 {
    transform: translateY(-120px);
}

.industry-card:hover img,
.industry-card:focus-within img {
    transform: scale(1.06);
    filter: saturate(0.82) contrast(1.08) brightness(0.58);
}

.industry-card:hover::after,
.industry-card:focus-within::after {
    width: 100%;
}

.industry-card:hover::before,
.industry-card:focus-within::before {
    background: linear-gradient(to top, rgba(10,0,8,0.97) 0%, rgba(10,0,8,0.75) 58%, rgba(10,0,8,0.12) 100%);
    transition: background 400ms ease;
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-info-card { background: var(--gradient-2); color: white; border-radius: var(--radius-lg); padding: 50px 40px; height: 100%; box-sizing: border-box; }
.contact-info-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 15px; }
.contact-info-card > p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.75; margin-bottom: 35px; }
.contact-details { display: flex; flex-direction: column; gap: 25px; margin-bottom: 35px; }
.contact-detail { display: flex; align-items: flex-start; gap: 15px; }
.contact-detail-icon { width: 45px; height: 45px; min-width: 45px; background: rgba(149,13,59,0.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.contact-detail-icon i { color: var(--secondary); font-size: 18px; }
.contact-detail h4 { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.contact-detail p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; }
.contact-social { display: flex; gap: 12px; }
.contact-social a { width: 42px; height: 42px; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition); }
.contact-social a:hover { background: var(--gradient-1); border-color: transparent; transform: translateY(-3px); }
.contact-form-wrapper { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input,.form-group select,.form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); font-size: 14px; font-family: 'Inter', Arial, sans-serif; transition: var(--transition); background: var(--gray-light); color: var(--dark); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(149,13,59,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }


/* Contact page � fixed hero background, scrolling content */
.contact-page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(10,0,8,0.52), rgba(10,0,8,0.52)),
        url('contact-hero.jpg') center / cover no-repeat,
        url('bg-about.jpg') center / cover no-repeat;
}
.contact-page .service-hero,
.contact-page .contact-section-scroll,
.contact-page .footer-marquee {
    position: relative;
    z-index: 1;
}
.contact-page .service-hero {
    background: transparent;
    min-height: 62vh;
}
.contact-page .service-hero-bg {
    background: rgba(0,0,0,0.38);
}
.contact-fixed-bg {
    position: relative;
    padding: 72px 0 96px !important;
    background: transparent !important;
    overflow: hidden;
}
.contact-fixed-bg .container { position: relative; z-index: 1; }
.contact-stack-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 980px;
    margin: 0 auto;
}

/* Stacked contact layout: form on top, info card below */
.contact-two-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
    max-width: 860px;
    margin: 0 auto;
}

/* Inner form rows (replaces <br> spacers) */
.contact-fixed-bg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-fixed-bg-row .form-group {
    margin-bottom: 0;
}
.contact-form-wide {
    width: 100%;
}
.contact-form-heading {
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.contact-form-lead {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    margin: 0 0 28px;
    line-height: 1.6;
}
.contact-fixed-bg .contact-form-wrapper {
    border-radius: 0;
    padding: clamp(32px, 4vw, 52px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}
.contact-fixed-bg .contact-form .form-group label {
    color: rgba(255,255,255,0.95);
}
.contact-fixed-bg .form-group input,
.contact-fixed-bg .form-group select,
.contact-fixed-bg .form-group textarea {
    border-radius: 0;
    min-height: 52px;
    height: 52px;
    padding: 14px 16px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.94);
    width: 100%;
}
.contact-fixed-bg .form-group textarea {
    height: auto;
    min-height: 140px;
    resize: vertical;
}
.contact-fixed-bg .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}
.contact-fixed-bg .form-row .form-group {
    margin-bottom: 0;
}
.contact-fixed-bg .form-group {
    margin-bottom: 20px;
}
.contact-info-below {
    width: 100%;
    position: static;
    min-width: 0;
}
.contact-fixed-bg .contact-info-card {
    border-radius: 0;
    background: rgba(26,0,8,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: clamp(36px, 4vw, 48px);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}
/* ===== FOOTER & MARQUEE ===== */
/*
 * DEFAULT (all pages): both elements are in normal document flow so
 * about / services / contact pages work with zero JS intervention.
 *
 * HOMEPAGE ONLY: JS adds  body.home-reveal  which switches them to
 * position:fixed (z-index 1) so they live behind the z-index:2 content
 * sections and are gradually uncovered as the user scrolls past the CTA.
 */

/* -- Marquee band -- */
.footer-marquee {
    background: #151515;
    color: #f4f4f4;
    overflow: hidden;
    padding: 28px 0 28px;   /* equal top/bottom, no extra bottom gap */
    width: 100%;
    box-sizing: border-box;
    position: relative;   /* in-flow by default */
    z-index: auto;
    margin: 0;
}
.footer-marquee-track {
    display: flex;
    width: max-content;
    gap: clamp(36px, 7vw, 96px);
    /* animation driven by JS rAF � no CSS keyframe */
    will-change: transform;
}
.footer-marquee-loop .footer-marquee-track {
    animation: footerMarqueeLoop 34s linear infinite;
}
.footer-marquee-track span {
    flex: 0 0 auto;
    font-size: clamp(56px, 11vw, 160px);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
}
/* Secondary pages use a CSS loop; the homepage can still use its JS reveal behavior. */
@keyframes footerMarqueeLoop {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* -- Footer -- */
.footer {
    background: #151515;
    color: #f4f4f4;
    position: relative;   /* in-flow by default */
    width: 100%;
    box-sizing: border-box;
    z-index: auto;
}

/* -- Homepage reveal: JS wraps marquee + footer in #footer-reveal-wrapper --
 *
 * The wrapper is position:fixed; bottom:0; z-index:1.
 * All content sections are z-index:2 and paint OVER it.
 * JS drives translateY from +totalH ? 0 so the whole block slides up as one
 * unit from behind the CTA section (last content block above).
 * Marquee always sits directly on top of footer � they look attached.
 */
#footer-reveal-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    will-change: transform;
    display: flex;
    flex-direction: column;
}

/* Inside the wrapper: marquee and footer are normal flow, stacked */
body.home-reveal .footer-marquee {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    z-index: auto;
}
body.home-reveal .footer {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    z-index: auto;
    will-change: auto;
    transform: none;
}
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.footer-logo img { height: 92px !important; width: 92px !important; }
.footer-logo .logo-icon { width: 92px; height: 92px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--gradient-1); color: #fff; font-size: 42px; font-weight: 900; }
.footer-logo .logo-name { font-size: 34px; font-weight: 900; color: #fff; line-height: 1; }
.footer-logo .logo-sub { font-size: 14px; letter-spacing: 6px; color: var(--accent); line-height: 1.2; }
.footer-about p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.footer-about .footer-social { margin-left: 16px; }
.footer-social a { width: 40px; height: 40px; border: 2px solid rgba(255,255,255,0.16); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); font-size: 14px; }
.footer-social a:hover { background: var(--gradient-1); border-color: transparent; color: white; }
.footer-col h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gradient-1); border-radius: 3px; }
.footer-col > p { color: rgba(255,255,255,0.72); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 15px; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 8px; }
.footer-newsletter { display: flex; margin: 20px 0; }
.footer-newsletter input { flex: 1; padding: 12px 15px; border: 2px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); border-radius: var(--radius-sm) 0 0 var(--radius-sm); color: #fff; font-family: 'Inter', Arial, sans-serif; font-size: 14px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.38); }
.footer-newsletter input:focus { outline: none; border-color: var(--primary); }
.footer-newsletter button { background: var(--gradient-1); color: white; border: none; padding: 12px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; cursor: pointer; transition: var(--transition); }
.footer-newsletter button:hover { opacity: 0.9; }
.footer-contact-mini { margin-top: 20px; }
.footer-contact-mini p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.footer-contact-mini i { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; }
.footer-bottom-content { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 10px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.footer-bottom-links a:hover { color: #fff; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gradient-1); color: white; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; z-index: 100; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-glow); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }

/* ===== PAGE BORDER ZOOM EFFECT ===== */
body { background: #ffffff; box-sizing: border-box; min-height: 100vh; }
#page-wrapper { border-radius: 0; overflow: hidden; position: relative; background: var(--dark); transition: none; }
#page-wrapper::before { content: none; }
#page-wrapper.zoomed { border-radius: 0; }
#page-wrapper.zoomed::before { opacity: 0; border-radius: 0; }

/* ===== CONTENT SECTIONS ABOVE FIXED FOOTER (z-index: 1) ===== */
/* Elements with position already set � just raise z-index */
.hero           { z-index: 2; }
.about-panel    { z-index: 2; }   /* position: sticky */
.hww-section    { z-index: 2; }   /* position: relative */
.hww-pin        { z-index: 2; }   /* position: sticky */
/* Elements that need position added so z-index takes effect */
.about-section, .services, .collabs-section,
.newspaper-section, .counter-section, .testimonials, .print-media-showcase,
.cta-section {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
    .navbar .container { padding: 0 28px; }
    .logo-img { height: 54px; width: 54px; }
    .logo-name { font-size: 24px; }
    .logo-sub { font-size: 10px; letter-spacing: 5px; }
    .nav-link { padding: 7px 14px; font-size: 13px; }
    .nav-links { gap: 0; }
}

@media (max-width: 920px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .newspaper-grid { grid-template-columns: 1fr; gap: 48px; }
    .print-media-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-simple-grid { grid-template-columns: 1fr; }

    .counter-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-split-story { grid-template-columns: 1fr; gap: 28px; }
    .about-story-left { position: relative; min-height: auto; padding: 60px 0 10px; }
    .about-story-copy { position: relative; display: none; width: 100%; }
    .about-story-copy.is-active { display: block; }
    .about-story-right { padding-top: 0; }
    .difference-heading { align-items: flex-start; flex-direction: column; }
    .industries-header { max-width: none; }
    .industry-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .industry-card:nth-child(n) { grid-column: span 1; }
}

@media (max-width: 768px) {
    /* Reduce global container padding so content reaches near screen edges */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar { padding: 8px 0 0; }
    .navbar .container { height: 66px; padding: 0 20px; }
    .logo { gap: 9px; padding: 4px 0; transform: translateY(4px); }
    .logo-img { height: 48px; width: 48px; }
    .logo-name { font-size: 22px; }
    .logo-sub { font-size: 9px; letter-spacing: 4px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 32px; }
    .section-title { font-size: 32px; }
    .about-section { height: auto; padding: 80px 0; }
    .about-content-heading { font-size: 20px; }
    .about-static-line { font-size: 14px; }
    .about-simple-card { min-height: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .svc-card { height: 300px; }
    .collabs-track { gap: 48px; }
    .collab-logo { width: 160px; height: 80px; }
    .process-line { left: 25px; }
    .process-dot { left: 25px; width: 40px; height: 40px; }
    .process-step,.process-step.right { flex-direction: column; align-items: flex-start; padding-left: 70px; }
    .process-content { width: 100%; }
    .counter-grid { grid-template-columns: repeat(2,1fr); }
    .testimonial-card { padding: 0 20px; }
    .testimonial-text { font-size: 16px; }
    .print-media-showcase { padding: 60px 0; }
    .print-media-showcase .container { padding-left: 0; padding-right: 0; }
    .print-media-grid { gap: 32px; }
    .print-media-video-panel { padding: 0; }
    .print-video-frame { border-radius: 0; }
    .print-media-copy {
        padding-left: 16px;
        padding-right: 16px;
    }
    .print-media-copy h2 { font-size: clamp(36px, 10vw, 56px); }
    .print-publication-list { max-width: 100%; }
    .print-video-actions { top: 12px; right: 12px; }
    .print-video-btn { width: 34px; height: 34px; }
    .cta-content h2 { font-size: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-logo img,
    .footer-logo .logo-icon { height: 78px !important; width: 78px !important; }
    .footer-logo .logo-name { font-size: 28px; }
    .footer-logo .logo-sub { font-size: 12px; letter-spacing: 5px; }
    .about-immersive-hero { min-height: 100vh; }
    .about-hero-title span { font-size: 48px; }
    .about-split-story {
        display: flex;
        flex-direction: column;
        width: min(100% - 36px, 620px);
        height: auto;
        min-height: 0;
        gap: 24px;
        padding: 42px 0 90px;
        overflow: visible;
    }
    .about-story-left,
    .about-story-right {
        display: contents;
        height: auto;
        padding: 0;
        transform: none !important;
    }
    .about-story-copy,
    .about-story-copy.is-active {
        position: relative;
        display: block;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto;
    }
    .about-story-copy[data-story-copy="0"] { order: 1; }
    .about-story-image[data-story-image="0"] { order: 2; }
    .about-story-copy[data-story-copy="1"] { order: 3; margin-top: 28px; }
    .about-story-image[data-story-image="1"] { order: 4; }
    .about-story-copy[data-story-copy="2"] { order: 5; margin-top: 28px; }
    .about-story-image[data-story-image="2"] { order: 6; }
    .about-story-copy p {
        max-width: none;
        font-size: 15px;
        line-height: 1.7;
    }
    .about-story-image {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        flex: none;
        margin: 0;
        opacity: 1 !important;
        transform: none !important;
    }
    .about-story-image img { height: 100%; object-fit: cover; }
    .difference-network { padding: 80px 0; }
    .difference-heading h2 { font-size: 38px; }
    .difference-row { grid-template-columns: 1fr; gap: 28px; }
    .difference-from-right,
    .difference-from-left { text-align: left; }
    .difference-from-right p { margin-left: 0; }
    .difference-point h3 { font-size: 28px; }
    .difference-point p { font-size: 16px; }
    .contact-fixed-bg .form-row { grid-template-columns: 1fr; }
    .contact-stack-layout { max-width: 100%; }
    .contact-two-col { grid-template-columns: 1fr; }
    .contact-fixed-bg-row { grid-template-columns: 1fr; }
    .contact-info-below { position: static; }
    .contact-info-card { padding: 28px 16px !important; box-sizing: border-box; width: 100%; overflow: hidden; }
    .contact-detail { flex-wrap: nowrap; gap: 12px; }
    .contact-detail p { font-size: 13px; word-break: break-word; overflow-wrap: anywhere; }
    .contact-details { gap: 18px; }
    .contact-fixed-bg .contact-form-wrapper { padding: clamp(24px, 4vw, 40px) 16px; }
    /* Contact section: remove container side padding so form/info spans full width */
    .contact-fixed-bg .container,
    .contact-section-scroll .container {
        padding-left: 0;
        padding-right: 0;
    }
    .contact-two-col,
    .contact-stack-layout {
        padding-left: 16px;
        padding-right: 16px;
    }
    .industries-section { min-height: auto; padding: 80px 0; }
    .industries-header { margin-bottom: 26px; }
    .industries-header h2 { font-size: 42px; }
    .industries-header .about-kicker { font-size: 11px; }
    .industry-track { grid-template-columns: 1fr; }
    .industry-card:nth-child(n) { grid-column: span 1; }
    .industry-card { min-height: 430px; }
    .footer-about .footer-social { margin-left: 0; }
    .cursor,.cursor-follower { display: none; }
    .newspaper-title { white-space: normal; font-size: 36px; }
}

@media (max-width: 480px) {
    .navbar .container { padding: 0 16px; }
    .container { padding-left: 12px; padding-right: 12px; }
    .logo-img { height: 42px; width: 42px; }
    .logo-name { font-size: 19px; }
    .logo-sub { font-size: 8px; letter-spacing: 3px; }
    .hero-title { font-size: 26px; }
    .section-title { font-size: 24px; }
    .counter-grid { grid-template-columns: 1fr 1fr; }
    .btn { justify-content: center; clip-path: none; border-radius: 0; }
    .footer-bottom-links { flex-direction: column; gap: 8px; align-items: center; }
    .contact-fixed-bg .contact-form-wrapper { padding: 20px 14px; }
    .contact-fixed-bg .container,
    .contact-section-scroll .container {
        padding-left: 0;
        padding-right: 0;
    }
    .contact-two-col,
    .contact-stack-layout {
        padding-left: 12px;
        padding-right: 12px;
    }
    .contact-info-card { padding: 20px 14px !important; }
    .contact-detail-icon { min-width: 38px; width: 38px; height: 38px; }
    .contact-detail p { font-size: 12px; word-break: break-word; overflow-wrap: anywhere; }
    .contact-form-heading { font-size: 22px; }
    /* Print media stays edge-to-edge at 480px too */
    .print-media-showcase .container { padding-left: 0; padding-right: 0; }
    .print-media-copy { padding-left: 14px; padding-right: 14px; }
}

/* ===== LOGO CAROUSEL SECTION ===== */
.logo-carousel-section {
    padding: 50px 0 60px;
    background: #f7f1e5f4;
    overflow: hidden;
    position: relative;
}

.logo-carousel-content {
    text-align: center;
    margin-bottom: 36px;
}

.logo-carousel-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #1a0008;
    margin: 0 0 16px;
    line-height: 1.1;
}

.logo-carousel-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: #1a0008;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.logo-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logo-carousel-track {
    display: flex;
    gap: 8px;
    width: max-content;
    padding: 0;
    margin: 0;
    will-change: transform;
}

/* Row 1: Slides LEFT infinitely � starts at -50% so first visible logos are from the middle (always full) */
.logo-carousel-row-1 {
    animation: slideLeft 35s linear infinite;
    transform: translateX(-50%);
}

/* Row 2: Slides RIGHT infinitely � starts at 0 and moves right, wrapping seamlessly */
.logo-carousel-row-2 {
    animation: slideRight 35s linear infinite;
    transform: translateX(-50%);
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: none;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .logo-carousel-section {
        padding: 60px 0 80px;
    }
    
    .logo-carousel-content {
        margin-bottom: 40px;
    }
    
    .logo-carousel-wrapper {
        gap: 5px;
    }
    
    .logo-carousel-track {
        gap: 7px;
    }
    
    .logo-item {
        width: 140px;
        height: 88px;
    }
}

@media (max-width: 768px) {
    .logo-carousel-section {
        padding: 50px 0 60px;
    }
    
    .logo-carousel-title {
        font-size: 32px;
    }
    
    .logo-carousel-subtitle {
        font-size: 14px;
    }
    
    .logo-carousel-wrapper {
        gap: 4px;
    }
    
    .logo-carousel-track {
        gap: 6px;
    }
    
    .logo-item {
        width: 120px;
        height: 76px;
    }
}

@media (max-width: 480px) {
    .logo-carousel-section {
        padding: 40px 0 50px;
    }
    
    .logo-carousel-title {
        font-size: 24px;
    }
    
    .logo-carousel-subtitle {
        font-size: 12px;
    }
    
    .logo-carousel-wrapper {
        gap: 4px;
    }
    
    .logo-carousel-track {
        gap: 5px;
    }
    
    .logo-item {
        width: 100px;
        height: 64px;
    }
}

/* ===== ABOUT TITLE WRAP HIDDEN (removed from HTML) ===== */

/* ============================================================
   RESPONSIVE FIXES — device-safe layout corrections
   (appended; do not edit above this line)
   ============================================================ */

/* ── Global box-model safety ── */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe { max-width: 100%; height: auto; }

/* ── Prevent horizontal scroll on every viewport ── */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
#page-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* ── Hero: keep text readable on all sizes ── */
.hero-title {
    font-size: clamp(1.6rem, 5vw, 5rem);
    word-break: break-word;
}
.hero-description {
    font-size: clamp(14px, 2.2vw, 18px);
}

/* ── Navbar: prevent logo / links overflow ── */
.navbar .container {
    flex-wrap: nowrap;
    min-width: 0;
}
.logo-name { white-space: nowrap; }

/* ── Services grid: 3 → 2 → 1 ── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .svc-card { height: 280px; }
}

/* ── About split home: stack on tablet ── */
@media (max-width: 860px) {
    .about-split-home-inner {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .about-split-home-img { height: 320px; }
    .about-split-home-text {
        padding: 52px 24px 44px;
    }
}
@media (max-width: 480px) {
    .about-split-home-img { height: 220px; }
    .about-split-img-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 14px;
        gap: 8px;
    }
    .about-split-img-badge .badge-num { font-size: 26px; }
}

/* ── Newspaper section ── */
@media (max-width: 900px) {
    .newspaper-grid { grid-template-columns: 1fr; gap: 36px; }
    .newspaper-title { white-space: normal; font-size: clamp(28px, 8vw, 54px); }
}

/* ── Print media showcase ── */
@media (max-width: 900px) {
    .print-media-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Difference rows: 2-col → 1-col ── */
@media (max-width: 860px) {
    .difference-row { grid-template-columns: 1fr; gap: 24px; }
    .difference-from-right,
    .difference-from-left { text-align: left; }
    .difference-from-right p { margin-left: 0; }
}

/* ── Industries track ── */
@media (max-width: 900px) {
    .industry-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100vw - 24px);
    }
    .industry-card:nth-child(n) { grid-column: span 1; }
}
@media (max-width: 540px) {
    .industry-track { grid-template-columns: 1fr; }
    .industry-card { min-height: 360px; }
}

/* ── Counter grid ── */
@media (max-width: 640px) {
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .counter-number { font-size: 36px; }
}

/* ── Testimonials ── */
@media (max-width: 640px) {
    .testimonial-card { padding: 0 12px; }
    .testimonial-text { font-size: 15px; }
}

/* ── Contact page two-column form ── */
@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-two-col { grid-template-columns: 1fr; }
    .contact-fixed-bg .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-fixed-bg-row { grid-template-columns: 1fr; }
}

/* ── Footer grid ── */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-top { padding: 56px 0 40px; }
}

/* ── Logo carousel items ── */
@media (max-width: 400px) {
    .logo-item { width: 88px; height: 58px; padding: 8px; }
    .logo-carousel-section { padding: 36px 0 44px; }
}

/* ── How We Work horizontal scroll — mobile stack ── */
@media (max-width: 768px) {
    /* Already handled above — reinforce safe stacking */
    .hww-s1-content { left: 16px; right: 16px; }
    .hww-reveal-text { font-size: clamp(28px, 9vw, 48px); }
    .hww-s2-title .hww-reveal-text { font-size: clamp(28px, 9vw, 44px); }
}

/* ── Collab logos ── */
@media (max-width: 480px) {
    .collab-logo,
    .collab-logo:nth-child(8),
    .collab-logo:nth-child(9),
    .collab-logo:nth-child(13),
    .collab-logo:nth-child(14) {
        width: 130px;
        height: 70px;
    }
    .collabs-track { gap: 32px; }
}

/* ── Preloader wordmark: don't overflow on small screens ── */
.preloader-wordmark span {
    font-size: clamp(52px, 18vw, 19vw);
    overflow: hidden;
}

/* ── Section titles & subtitles: fluid clamp ── */
.section-title {
    font-size: clamp(24px, 4.5vw, 42px);
}
.section-subtitle {
    font-size: clamp(14px, 2vw, 17px);
    padding-left: 8px;
    padding-right: 8px;
}
.cta-content h2 {
    font-size: clamp(26px, 5vw, 44px);
}
.cta-content p {
    font-size: clamp(14px, 2.2vw, 19px);
}

/* ── CTA buttons: wrap gracefully ── */
.cta-buttons {
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 420px) {
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}

/* ── Back-to-top: tuck in on small screens ── */
@media (max-width: 480px) {
    .back-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; font-size: 15px; }
}

/* ── Mobile menu: ensure full-height scrollable overlay ── */
.mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ── Navbar: safe z-index above all sections ── */
.navbar { z-index: 1000; }
.mobile-menu { z-index: 999; }

/* ── About page hero: prevent overflow ── */
.about-hero-title span {
    word-break: break-word;
    overflow-wrap: break-word;
}
@media (max-width: 540px) {
    .about-hero-title span { font-size: clamp(32px, 10vw, 56px); }
}

/* ── Contact info card: prevent long email/phone overflow ── */
.contact-detail p,
.contact-detail h4 {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ── Form inputs: always full-width, min touch target ── */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
}