/* ==========================================================================
   SAVIOUR MARKETING - PREMIUM CORPORATE STYLE SHEET (MOTION COMPATIBLE)
   ========================================================================== */

:root {
    /* Main Dark/Light Theme variables */
    --bg: #ffffff;
    --bg-alt: #f7f7f8;
    --text: #0d0d0e;
    --text-dim: rgba(13, 13, 14, .6);
    --accent: #d4ff3f;
    --accent-text: #627c12;
    --border: rgba(13, 13, 14, .12);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset / Core Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor on desktop for custom interactive cursor */
}

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

::selection {
    background: var(--accent);
    color: #0a0a0b;
}

/* Common Section Padding & Headings */
.section-padding {
    padding: clamp(60px, 10vw, 120px) 0;
}

.kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-text);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-desc {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65;
    color: var(--text-dim);
}

/* SplitType Character Transforms Helper */
.word {
    display: inline-block;
}

.char {
    display: inline-block;
    will-change: transform;
}

/* Custom Reusable Buttons */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    background: var(--text);
    color: var(--bg);
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--accent-text);
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(98, 124, 18, 0.15);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-outline-custom:hover {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--text);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--text);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* Hover States for Interactive Cursor */
.cursor-dot.is-hovered {
    width: 0;
    height: 0;
}

.cursor-ring.is-hovered {
    width: 56px;
    height: 56px;
    background: rgba(106, 122, 20, 0.08);
    border-color: var(--accent-text);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 5vw;
    background: transparent;
    transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.nav-scrolled {
    padding: 14px 5vw;
    background: #ffffff;
    border-bottom: 1px solid rgba(13, 13, 14, 0.06);
    box-shadow: 0 10px 30px rgba(13, 13, 14, 0.03);
}

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

.nav-logo {
    display: inline-block;
}

.nav-logo-only {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

.site-nav.nav-scrolled .nav-logo-only {
    height: 58px;
}

.footer-logo-only {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links-desktop .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85); /* White links on dark hero background */
    transition: color 0.3s ease;
}

.nav-links-desktop .nav-link:hover {
    color: var(--accent); /* Glow neon green on hover */
}

.nav-links-desktop .nav-link.nav-cta {
    background: #ffffff; /* White CTA pill by default */
    color: #0d0d0e;
    padding: 10px 22px;
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nav-links-desktop .nav-link.nav-cta:hover {
    background: var(--accent);
    color: #0d0d0e;
    box-shadow: 0 4px 12px rgba(212, 255, 63, 0.2);
}

/* Scrolled Nav styling adjustments */
.site-nav.nav-scrolled .nav-links-desktop .nav-link {
    color: #0d0d0e; /* Dark text on white scrolled background */
}

.site-nav.nav-scrolled .nav-links-desktop .nav-link:hover {
    color: var(--accent-text);
}

.site-nav.nav-scrolled .nav-links-desktop .nav-link.nav-cta {
    background: #0d0d0e; /* Dark CTA pill on white header */
    color: #ffffff;
}

.site-nav.nav-scrolled .nav-links-desktop .nav-link.nav-cta:hover {
    background: var(--accent-text);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(106, 122, 20, 0.15);
}

/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    padding: 0;
    z-index: 205;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff; /* White hamburger lines by default */
    border-radius: 99px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.site-nav.nav-scrolled .nav-hamburger span {
    background: #0d0d0e; /* Dark hamburger lines on scrolled header */
}

/* Hamburger transition lines active */
.nav-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #ffffff;
}

.nav-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #ffffff;
}

/* Mobile Menu Fullscreen Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #0a0a0b;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

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

.mobile-menu-inner {
    width: 100%;
    height: 100%;
    padding: 32px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-brand {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
}

.mobile-brand span {
    color: var(--accent);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 38px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(26px, 8vw, 38px);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0;
}

.mobile-link:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.mobile-link.mobile-cta {
    color: var(--accent);
}

.mobile-menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-footer .footer-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.mobile-menu-footer .footer-email {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 5vw 60px;
    overflow: hidden;
    box-sizing: border-box;
    background: #000000;
}

.hero-bg-zoom {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
    opacity: 0.28;
    z-index: 0;
    will-change: transform;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(106, 122, 20, 0.28) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 900px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.hero-kicker .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6.2vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
}

/* Hero elements colors compatibility overrides */
.hero-section .btn-outline-custom {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-section .btn-outline-custom:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #000000;
}

.hero-section .btn-primary-custom {
    background: var(--accent);
    color: #0d0d0e;
}

.hero-section .btn-primary-custom:hover {
    background: #ffffff;
    color: #000000;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.indicator-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    position: relative;
}

.indicator-wheel {
    width: 3px;
    height: 6px;
    background: #ffffff;
    border-radius: 99px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheelScroll 1.8s infinite;
}

@keyframes mouseWheelScroll {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    80% { opacity: 0; transform: translate(-50%, 8px); }
    100% { opacity: 0; }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.about-content-wrapper {
    padding-right: 32px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    will-change: transform, clip-path;
}

.about-image-wrapper .image-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 4 / 5;
    background: var(--bg-alt);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.services-explorer-wrapper {
    background: var(--bg);
    padding: 40px;
    border-radius: 28px;
    border: 1px solid var(--border);
}

.services-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-tab-btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 22px 30px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    text-align: left;
    outline: none;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.services-tab-btn.active {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--accent-text);
}

.tab-btn-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    margin-right: 20px;
    opacity: 0.4;
}

.services-tab-btn.active .tab-btn-num {
    opacity: 1;
}

.tab-btn-icon {
    font-size: 20px;
    margin-right: 20px;
    color: var(--text);
    transition: transform 0.4s ease;
}

.services-tab-btn.active .tab-btn-icon {
    transform: scale(1.15);
    color: var(--accent-text);
}

.tab-btn-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.services-panels-wrap {
    position: relative;
    min-height: 380px;
}

.services-tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-tab-panel.active {
    display: block;
    opacity: 1;
}

.panel-header-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.panel-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-text);
    opacity: 0.15;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

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

.panel-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.grid-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-text);
    flex-shrink: 0;
}

.grid-item-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.industry-card {
    position: relative;
    padding: 45px 35px;
    border-radius: 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.industry-card-glow {
    position: absolute;
    inset: 0;
    background: var(--card-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-text);
    box-shadow: 0 25px 50px rgba(13, 13, 14, 0.05);
}

.industry-card:hover .industry-card-glow {
    opacity: 1;
}

.card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.industry-card:hover .card-icon-wrap {
    background: #ffffff;
    border-color: var(--accent-text);
}

.card-icon-wrap .card-icon {
    font-size: 24px;
    color: var(--text);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.industry-card:hover .card-icon {
    transform: rotate(15deg) scale(1.1);
    color: var(--accent-text);
}

.industry-card .card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.industry-card .card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.card-arrow-wrap {
    display: inline-flex;
    align-items: center;
}

.card-arrow {
    font-size: 18px;
    color: var(--text);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.industry-card:hover .card-arrow {
    transform: translateX(8px);
    color: var(--accent-text);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-section {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.why-sticky-content {
    position: sticky;
    top: 140px;
}

.why-blocks-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-block-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    border-radius: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: border-color 0.4s ease, background 0.4s ease;
}

.why-block-item:hover {
    border-color: var(--accent-text);
    background: #ffffff;
}

.why-block-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-text);
    line-height: 1;
}

.why-block-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.why-block-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dim);
    margin: 0;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    box-sizing: border-box;
}

.process-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(13, 13, 14, .015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 13, 14, .015) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.process-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .18;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.process-orb-a {
    width: 350px;
    height: 350px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(212, 255, 63, .5) 0%, transparent 70%);
}

.process-orb-b {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(120, 190, 255, .4) 0%, transparent 70%);
}

.process-container {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 64px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.process-left {
    position: relative;
}

.process-sticky-content {
    position: sticky;
    top: 150px;
    padding-right: 24px;
}

.process-giant-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8.5rem);
    font-weight: 800;
    line-height: 0.9;
    color: var(--text);
    margin-bottom: 24px;
}

.process-giant-num .of-total {
    font-size: 0.35em;
    opacity: 0.25;
}

.process-right {
    position: relative;
    padding-left: 50px;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.process-vertical-track {
    position: absolute;
    left: 8px;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: rgba(13, 13, 14, 0.08);
}

.process-vertical-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-text);
    will-change: height;
}

.process-vertical-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-text);
    box-shadow: 0 0 10px var(--accent-text);
    will-change: top;
}

.process-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
    will-change: transform;
}

.process-scroll-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    opacity: 0.28;
    transition: opacity 0.5s ease;
}

.process-scroll-step.active-step {
    opacity: 1;
}

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

.step-serif-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    transition: color 0.4s ease;
}

.step-serif-num.active {
    color: var(--accent-text);
}

.process-marker {
    position: absolute;
    left: -46px; /* Align precisely center of track */
    top: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.process-marker.active {
    background: var(--accent-text);
    border-color: var(--accent-text);
    transform: scale(1.2);
}

.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.step-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-dim);
}

/* ==========================================================================
   SELECTED PROJECTS (WORK) SECTION
   ========================================================================== */
.work-section {
    padding: 80px 0 0 0;
    background: var(--bg);
}

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

.work-card {
    display: block;
    color: inherit;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: none;
    aspect-ratio: 1 / 1;
    will-change: transform;
    transform-style: preserve-3d;
}

.work-thumb {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #141416;
    overflow: hidden;
    z-index: 1;
}

/* Custom gradients for portfolio case studies */
.work-thumb-1 { background: radial-gradient(circle at 30% 30%, rgba(212,255,63,.25), transparent 60%), #141416; }
.work-thumb-2 { background: radial-gradient(circle at 70% 30%, rgba(122,209,255,.22), transparent 60%), #141416; }
.work-thumb-3 { background: radial-gradient(circle at 30% 70%, rgba(212,255,63,.18), transparent 60%), radial-gradient(circle at 80% 20%, rgba(122,209,255,.15), transparent 55%), #141416; }
.work-thumb-4 { background: linear-gradient(135deg, rgba(212,255,63,.16), rgba(122,209,255,.12)), #141416; }
.work-thumb-5 { background: radial-gradient(circle at 60% 80%, rgba(122,209,255,.25), transparent 60%), #141416; }
.work-thumb-6 { background: conic-gradient(from 180deg at 50% 50%, rgba(212,255,63,.14), rgba(122,209,255,.14), rgba(212,255,63,.14)), #141416; }

.work-thumb-label {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, .38);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.work-card:hover .work-thumb-label {
    transform: scale(1.1);
}

.work-meta {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Translucent color overlays matching brand identities */
.work-card:nth-child(1) .work-meta { background: rgba(98, 124, 18, 0.95); color: #ffffff; }
.work-card:nth-child(2) .work-meta { background: rgba(26, 115, 232, 0.94); color: #ffffff; }
.work-card:nth-child(3) .work-meta { background: rgba(13, 13, 14, 0.96); color: #ffffff; }
.work-card:nth-child(4) .work-meta { background: rgba(245, 124, 0, 0.95); color: #ffffff; }
.work-card:nth-child(5) .work-meta { background: rgba(106, 122, 20, 0.95); color: #ffffff; }
.work-card:nth-child(6) .work-meta { background: rgba(13, 13, 14, 0.97); color: #ffffff; }

.work-card:hover .work-meta {
    opacity: 1;
}

.work-meta > * {
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
}

.work-card:hover .work-meta > * {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger transition delay hooks */
.work-card:hover .work-meta .work-category { transition-delay: 0.04s; }
.work-card:hover .work-meta .work-title { transition-delay: 0.08s; }
.work-card:hover .work-meta .work-result { transition-delay: 0.12s; }
.work-card:hover .work-meta .work-action-link { transition-delay: 0.16s; }

.work-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: 0.7;
    margin-bottom: 8px;
    font-weight: 700;
}

.work-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    margin: 0 0 8px 0;
}

.work-result {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 24px;
}

.work-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
    width: 100%;
}

.work-action-arrow {
    font-size: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.work-card:hover .work-action-arrow {
    transform: translateX(6px);
}

/* ==========================================================================
   STATISTICS & VIDEO SECTION
   ========================================================================== */
.video-section {
    position: relative;
    padding: 120px 0;
    background: #0d0d0e;
    overflow: hidden;
}

.video-section .bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-section .bg-media video {
    width: 100%;
    height: 130%; /* Oversized for parallax scroll scrub */
    object-fit: cover;
    opacity: 0.22;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 13, 14, 0.8) 0%, rgba(13, 13, 14, 0.95) 100%);
    z-index: 1;
}

.video-section .content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.video-stats .stat .num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
}

.video-stats .stat .label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.testimonial-swiper {
    padding-bottom: 80px !important;
}

.testimonial-slide {
    display: flex;
    justify-content: center;
}

.testimonial-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.quote-icon-wrap {
    font-size: 48px;
    color: var(--accent-text);
    opacity: 0.15;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.2vw, 2.2rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.testimonial-author-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.author-role {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dim);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 1px solid var(--border) !important;
    background: #ffffff !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.testimonial-prev::after,
.testimonial-next::after {
    display: none !important;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--accent-text) !important;
    background: var(--text) !important;
    color: #ffffff !important;
}

.testimonial-pagination {
    position: static !important;
    width: auto !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: var(--text-dim) !important;
    opacity: 0.25 !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 6px !important;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent-text) !important;
    opacity: 1 !important;
    transform: scale(1.2) !important;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.faq-sticky-content {
    position: sticky;
    top: 140px;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.faq-item.is-active {
    border-color: var(--accent-text);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: none;
    border: none;
    text-align: left;
    outline: none;
}

.faq-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.faq-item:hover .faq-icon {
    border-color: var(--accent-text);
    background: var(--bg-alt);
}

.faq-content-pane {
    overflow: hidden;
    will-change: height, opacity;
}

.faq-content-inner {
    padding: 0 40px 30px;
}

.faq-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-dim);
    margin: 0;
}

/* ==========================================================================
   CONTACT CTA SECTION
   ========================================================================== */
.contact-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.contact-badges-row {
    display: flex;
    gap: 20px;
}

.trust-badge-card {
    flex: 1;
    padding: 24px;
    border-radius: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-text);
}

.trust-badge-card .badge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.trust-badge-card .badge-header .stars {
    color: #ffb703;
    font-size: 16px;
}

.trust-badge-card .badge-header .score {
    font-weight: 700;
    font-size: 14px;
}

.trust-badge-card .badge-body .brand {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.trust-badge-card .badge-body .verified {
    font-size: 12px;
    color: var(--text-dim);
}

.trust-indicators-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.indicator-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(106, 122, 20, 0.1);
    color: var(--accent-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.indicator-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dim);
}

.contact-card-form {
    padding: 50px;
    border-radius: 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.form-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
}

.form-floating-custom {
    position: relative;
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-text);
}

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

.form-captcha-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.captcha-label {
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.captcha-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.captcha-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent-text);
    border-color: var(--accent-text);
}

.captcha-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.consent-text {
    font-size: 14px;
    font-weight: 500;
}

.captcha-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #0d0d0e;
    color: rgba(255, 255, 255, 0.6);
    padding: 100px 5vw 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.footer-col-brand {
    padding-right: 60px;
}

.footer-logo-wrap {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo-symbol {
    color: var(--accent);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
}

.footer-heading {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-links-list,
.footer-info-list,
.footer-socials-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-list a,
.footer-info-list a,
.footer-socials-list a {
    color: inherit;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-list a:hover,
.footer-info-list a:hover,
.footer-socials-list a:hover {
    color: #ffffff;
}

.footer-location {
    font-size: 13px;
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-sep {
    opacity: 0.3;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    body {
        cursor: default; /* Restore cursor on tablets/mobiles */
    }

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links-desktop {
        display: none;
    }

    .why-sticky-content,
    .faq-sticky-content {
        position: static;
        margin-bottom: 40px;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-sticky-content {
        position: static;
        padding-right: 0;
    }

    .process-right {
        padding-left: 28px;
        gap: 32px;
        height: auto;
        overflow: visible;
    }

    .process-vertical-track {
        bottom: 120px;
    }

    .process-scroll-list {
        gap: 80px;
        padding-bottom: 80px;
    }

    .process-scroll-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        opacity: 0.8;
    }

    .process-scroll-step.active-step {
        opacity: 1;
    }

    .step-meta-col {
        grid-column: 2;
        margin-top: 12px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .footer-col-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .services-explorer-wrapper {
        padding: 24px;
    }
    
    .panel-items-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }

    .contact-badges-row {
        flex-direction: column;
    }

    .contact-card-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-col-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ==========================================================================
   SUBPAGE HERO BANNER SECTION (SERVICES, WORK, ABOUT, CONTACT)
   ========================================================================== */
.hero-banner-section {
    position: relative;
    padding: clamp(140px, 12vw, 180px) 5vw 80px; /* Large top padding to push banner title below the fixed navbar */
    background: #000000;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border);
}

.hero-banner-section.is-dark {
    color: #ffffff;
    background-size: cover;
    background-position: center center;
}

.hero-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-banner-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-banner-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0;
}

@media (max-width: 991px) {
    .hero-banner-section {
        padding: 130px 5vw 60px;
    }
}

/* ==========================================================================
   STANDALONE ABOUT US PAGE DETAILS
   ========================================================================== */
.about-manifesto-section {
    background: var(--bg);
}

.manifesto-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: rgba(13, 13, 14, 0.15); /* Light default so words highlight on scroll */
    text-align: center;
}

/* Pillars Cards styling */
.about-pillars-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pillar-card {
    position: relative;
    padding: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.pillar-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 255, 63, 0.08), transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-text);
    box-shadow: 0 20px 40px rgba(13, 13, 14, 0.04);
}

.pillar-card:hover .pillar-card-glow {
    opacity: 1;
}

.pillar-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.pillar-card:hover .pillar-icon-wrap {
    background: #ffffff;
    border-color: var(--accent-text);
}

.pillar-icon-wrap i {
    font-size: 20px;
    color: var(--text);
    transition: transform 0.4s ease, color 0.4s ease;
}

.pillar-card:hover .pillar-icon-wrap i {
    transform: scale(1.1);
    color: var(--accent-text);
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pillar-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
    margin: 0;
}

/* Team Cards styling */
.about-team-section {
    background: var(--bg);
}

.team-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-text);
}

.team-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000000;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img {
    transform: scale(1.06);
}

.team-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 14, 0.94);
    display: flex;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-hover-overlay {
    opacity: 1;
}

.team-bio {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-bio {
    transform: translateY(0);
}

.team-meta {
    padding: 24px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.team-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dim);
}
