/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #060606;
    --bg-secondary: #0c0c0c;
    --bg-card: #111111;
    --bg-card-hover: #151515;
    --text-primary: #f0f0f0;
    --text-secondary: #8a8a8a;
    --text-muted: #555555;
    --accent: #c8ff00;
    --accent-hover: #d4ff33;
    --border: #1a1a1a;
    --border-light: #242424;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Syne', 'DM Sans', sans-serif;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 96px;
}

html:not(.lenis) {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html:not(.lenis) { scroll-behavior: auto; }
}

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
    body, body * { cursor: none; }
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Page Transition (Wipe Overlay) ===== */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 9995;
    background: linear-gradient(180deg, #0a0a0a 0%, #060606 60%, #000 100%);
    pointer-events: none;
    transform: translateY(-100%);
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-transition-overlay.is-hold {
    transform: translateY(0);
    pointer-events: auto;
}

.page-transition-overlay.is-enter {
    animation: pageEnter 0.85s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    pointer-events: auto;
}

.page-transition-overlay.is-leave {
    animation: pageLeave 0.52s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    pointer-events: auto;
}

@keyframes pageEnter {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

@keyframes pageLeave {
    0%   { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

.page-transition-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--accent);
    opacity: 0;
    transform: translateY(12px);
}

.page-transition-mark i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent);
    animation: markDot 1.2s ease-in-out infinite;
}

@keyframes markDot {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50%      { opacity: 1; transform: scale(1.2); }
}

.page-transition-overlay.is-leave .page-transition-mark,
.page-transition-overlay.is-hold .page-transition-mark {
    animation: markIn 0.4s ease 0.08s forwards;
}

.page-transition-overlay.is-enter .page-transition-mark {
    animation: markOut 0.35s ease forwards;
}

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

@keyframes markOut {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-16px); }
}

/* ===== Film Grain Overlay ===== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ===== Custom Cursor ===== */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(200, 255, 0, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease;
}

.cursor-dot.hovering {
    width: 12px;
    height: 12px;
    background: var(--accent);
}

.cursor-ring.hovering {
    width: 52px;
    height: 52px;
    border-color: rgba(200, 255, 0, 0.5);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), rgba(200, 255, 0, 0.6));
    z-index: 1100;
    transition: width 0.05s linear;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

.mobile-cta {
    padding: 14px 36px;
    background: var(--accent) !important;
    color: #000 !important;
    border-radius: var(--radius-full);
    font-weight: 700 !important;
    font-size: 16px !important;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 13vw, 140px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: lowercase;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.2);
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-service-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: rgba(200, 255, 0, 0.06);
    border: 1px solid rgba(200, 255, 0, 0.18);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.3px;
    transition: all var(--transition);
}

.hero-service-tag:hover {
    background: rgba(200, 255, 0, 0.12);
    border-color: rgba(200, 255, 0, 0.35);
    transform: translateY(-2px);
}

.hero-service-tag .tag-full {
    display: none;
}

.hero-service-tag:hover .tag-short {
    display: none;
}

.hero-service-tag:hover .tag-full {
    display: inline;
    white-space: nowrap;
}

/* ===== Client Logos ===== */
.clients-section {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}

.clients-slide {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.clients-slide img {
    height: 36px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%) brightness(1.5);
    transition: opacity var(--transition), filter var(--transition);
}

.clients-slide img:hover {
    opacity: 0.9;
    filter: grayscale(0%) brightness(1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Section Shared Styles ===== */
.section-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 56px;
    line-height: 1.1;
}

/* ===== About Section ===== */
.about-section {
    padding: 160px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-detail {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition);
}

.about-card:hover {
    border-color: var(--border-light);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== 24hrs Section ===== */
.twentyfour-section {
    padding: 160px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.twentyfour-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200, 255, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.twentyfour-card {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    padding: 56px clamp(24px, 4vw, 56px);
    background: linear-gradient(180deg, rgba(200, 255, 0, 0.03) 0%, rgba(18, 18, 18, 0.6) 100%);
    border: 1px solid rgba(200, 255, 0, 0.18);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(8px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.twentyfour-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.twentyfour-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(200, 255, 0, 0.08);
    border: 1px solid rgba(200, 255, 0, 0.28);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.badge-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.badge-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    animation: badgePulse 2s ease-out infinite;
}

@keyframes badgePulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.4); opacity: 0; }
}

.badge-sep { opacity: 0.4; }
.badge-sub { color: rgba(200, 255, 0, 0.72); font-weight: 600; }

.twentyfour-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.title-accent {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.twentyfour-desc {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ===== Timeline ===== */
.twentyfour-timeline {
    position: relative;
    margin: 0 auto 44px;
    max-width: 720px;
    padding: 0 8px;
}

.timeline-track {
    position: absolute;
    top: 6px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--border-light);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    top: 6px;
    left: 8px;
    height: 2px;
    width: calc(100% - 16px);
    background: linear-gradient(90deg, rgba(200, 255, 0, 0.2) 0%, var(--accent) 100%);
    border-radius: 2px;
    transform-origin: left;
    animation: timelineFill 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes timelineFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.timeline-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.step-dot--live {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.18), 0 0 20px rgba(200, 255, 0, 0.6);
    animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.18), 0 0 20px rgba(200, 255, 0, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(200, 255, 0, 0.08), 0 0 28px rgba(200, 255, 0, 0.9); }
}

.step-hour {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.step-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===== Grid (Triggers vs Deliverables) ===== */
.twentyfour-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    padding: 32px 8px;
    margin-bottom: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.twentyfour-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--border-light) 30%, var(--border-light) 70%, transparent 100%);
}

.twentyfour-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.twentyfour-group-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.group-label-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

.twentyfour-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition);
}

.chip:hover {
    background: rgba(200, 255, 0, 0.04);
    border-color: rgba(200, 255, 0, 0.25);
    transform: translateX(2px);
}

.chip svg {
    flex-shrink: 0;
    color: var(--accent);
}

.chip--trigger svg {
    color: #ffb547;
    filter: drop-shadow(0 0 6px rgba(255, 181, 71, 0.4));
}

.chip--trigger:hover {
    border-color: rgba(255, 181, 71, 0.3);
    background: rgba(255, 181, 71, 0.04);
}

.chip--deliverable svg {
    color: var(--accent);
}

/* ===== Foot ===== */
.twentyfour-foot {
    text-align: center;
}

.twentyfour-note {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.twentyfour-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    position: relative;
}

.cta-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid #000;
    opacity: 0.5;
    animation: ctaPulse 1.6s ease-out infinite;
}

@keyframes ctaPulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.twentyfour-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 255, 0, 0.28);
}

/* Backwards-compat: legacy .feature-tag usage elsewhere */
.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.feature-tag svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .twentyfour-section {
        padding: 100px 0;
    }

    .twentyfour-card {
        padding: 40px 20px;
    }

    .twentyfour-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px 0;
    }

    .twentyfour-divider {
        display: none;
    }

    .timeline-steps {
        gap: 4px;
    }

    .step-label {
        font-size: 11px;
    }
}

/* ===== Services Section ===== */
.services-section {
    padding: 160px 0;
}

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

.service-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--border-light);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    transition: color var(--transition);
}

.service-card:hover .service-number {
    color: var(--accent);
}

.service-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.service-card:hover .service-arrow {
    background: var(--accent);
    color: #000;
}

/* ===== Work / Portfolio Section ===== */
.work-section {
    padding: 160px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.work-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.work-header .section-title {
    margin-bottom: 0;
}

/* --- Shared card styles --- */
.work-card {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.work-card:hover {
    border-color: rgba(200, 255, 0, 0.25);
    transform: translateY(-6px);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(200, 255, 0, 0.08);
}

/* Visual / image area */
.work-card__visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200, 255, 0, 0.03) 0%, transparent 60%),
        var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.work-card__visual img {
    max-height: 100%;
    max-width: 75%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
    filter: brightness(0.95);
}

.work-card:hover .work-card__visual img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* Project number watermark */
.work-card__number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    transition: color 0.5s ease;
}

.work-card:hover .work-card__number {
    color: rgba(200, 255, 0, 0.07);
}

/* Content area */
.work-card__content {
    padding: 28px 32px;
    position: relative;
}

.work-card__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.work-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 255, 0, 0.08);
    border: 1px solid rgba(200, 255, 0, 0.15);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin-bottom: 14px;
}

.work-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.work-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.work-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease, gap 0.3s ease;
}

.work-card:hover .work-card__cta {
    color: var(--accent);
    gap: 10px;
}

.work-card__cta svg {
    transition: transform 0.3s ease;
}

.work-card:hover .work-card__cta svg {
    transform: translate(2px, -2px);
}

/* --- Featured card (full width hero) --- */
.work-card--featured {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
}

.work-card--featured .work-card__visual {
    height: 380px;
    padding: 48px;
    border-right: 1px solid var(--border);
}

.work-card--featured .work-card__visual img {
    max-width: 65%;
}

.work-card--featured .work-card__number {
    font-size: 120px;
    top: 24px;
    right: 32px;
}

.work-card--featured .work-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 44px;
}

.work-card--featured .work-card__content::before {
    display: none;
}

.work-card--featured .work-card__title {
    font-size: 32px;
    margin-bottom: 10px;
}

.work-card--featured .work-card__desc {
    font-size: 16px;
    margin-bottom: 28px;
    color: var(--text-secondary);
}

/* --- Grid cards --- */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.work-grid .work-card__visual {
    height: 220px;
    padding: 32px;
}

/* Tall card variant - spans 2 rows visually via extra height */
.work-card--tall .work-card__visual {
    height: 260px;
}

/* View all button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    transition: all var(--transition);
}

.view-all-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* --- Portfolio responsive --- */
@media (max-width: 1024px) {
    .work-card--featured {
        grid-template-columns: 1fr;
    }

    .work-card--featured .work-card__visual {
        height: 280px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .work-card--featured .work-card__content {
        padding: 32px;
    }

    .work-card--featured .work-card__title {
        font-size: 26px;
    }

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

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card--featured .work-card__visual {
        height: 220px;
        padding: 32px;
    }

    .work-card--featured .work-card__number {
        font-size: 80px;
    }

    .work-grid .work-card__visual {
        height: 200px;
    }
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 160px 0;
}

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

.blog-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.blog-card__img {
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    margin-bottom: 16px;
}

.blog-date {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition);
}

.blog-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
}

.blog-link:hover {
    gap: 10px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.testimonials-header .section-title {
    margin-bottom: 0;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(250, 204, 21, 0.06);
    border: 1px solid rgba(250, 204, 21, 0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #facc15;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--transition);
    text-decoration: none;
}

.testimonials-badge:hover {
    background: rgba(250, 204, 21, 0.12);
    border-color: rgba(250, 204, 21, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.1);
}

.testimonials-track-wrap {
    position: relative;
    margin: 0 -32px;
    padding: 0 32px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    animation: scroll-testimonials 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex: 0 0 380px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-light);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-card__stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card__source {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 160px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    border-color: rgba(200, 255, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== Site-wide Discovery Call CTA (above footer) ===== */
.site-cta {
    padding: 100px 0 120px;
}

.site-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    padding: 48px 56px;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.06) 0%, rgba(200, 255, 0, 0.02) 100%), var(--bg-card);
    border: 1px solid rgba(200, 255, 0, 0.18);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.site-cta__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.site-cta__inner:hover {
    border-color: rgba(200, 255, 0, 0.35);
    transform: translateY(-2px);
}

.site-cta__content {
    position: relative;
    z-index: 1;
}

.site-cta__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 16px;
}

.site-cta__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.site-cta__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 520px;
}

.site-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.site-cta__btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.2);
}

.site-cta__btn svg {
    transition: transform var(--transition);
}

.site-cta__btn:hover svg {
    transform: translateX(4px);
}

.site-cta__visual {
    position: relative;
    z-index: 1;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 255, 0, 0.08);
    border: 1px solid rgba(200, 255, 0, 0.2);
    border-radius: var(--radius-lg);
    color: var(--accent);
    flex-shrink: 0;
}

.site-cta__visual svg {
    width: 64px;
    height: 64px;
}

@media (max-width: 768px) {
    .site-cta {
        padding: 80px 0 100px;
    }
    .site-cta__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 28px;
    }
    .site-cta__visual {
        order: -1;
        width: 80px;
        height: 80px;
    }
    .site-cta__visual svg {
        width: 40px;
        height: 40px;
    }
    .site-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 60px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-col a[aria-current="page"] {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 32px;
    margin-bottom: 0;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-socials a svg {
    width: 15px;
    height: 15px;
}

.footer-socials a:hover {
    border-color: rgba(200, 255, 0, 0.3);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom strong {
    color: var(--text-secondary);
}

/* ===== Inline Links (for internal linking) ===== */
.inline-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.inline-link:hover {
    opacity: 0.75;
}

/* ===== Scroll Animations ===== */

/* Base: fade up (default) */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from left */
.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Text clip reveal - heading rises from behind a clipping mask */
.text-reveal {
    overflow: hidden;
    display: inline-block;
}

.text-reveal > * {
    transform: translateY(105%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.visible > * {
    transform: translateY(0);
}

/* Blur in - starts blurred and sharpens */
.blur-in {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(20px);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Draw line - for dividers and borders */
.draw-line {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.draw-line.visible {
    transform: scaleX(1);
}

/* ===== Parallax-lite (applied via JS) ===== */
.parallax-slow {
    will-change: transform;
}

/* ===== Button hover micro-interactions ===== */
.hero-cta,
.nav-cta,
.page-hero__cta,
.twentyfour-cta,
.form-submit,
.view-all-btn,
.mobile-cta {
    position: relative;
    overflow: hidden;
}

.hero-cta::after,
.page-hero__cta::after,
.twentyfour-cta::after,
.form-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover::after,
.page-hero__cta:hover::after,
.twentyfour-cta:hover::after,
.form-submit:hover::after {
    transform: translateX(100%);
}

/* ===== Smooth counter for service numbers ===== */
.service-number,
.step-card__num,
.feature-card__num,
.work-card__number {
    transition: color 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-number,
.step-card:hover .step-card__num {
    transform: translateY(-4px);
}

/* ===== Logo carousel smooth ===== */
.clients-section {
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

/* ===== 3D Tilt Effect on Cards ===== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.15s ease;
}

.tilt-card .work-card__visual,
.tilt-card .pf-card__visual {
    transform: translateZ(20px);
}

.tilt-card .work-card__content,
.tilt-card .pf-card__body {
    transform: translateZ(10px);
}

/* ===== Magnetic Button Shift ===== */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Floating Particles in Hero ===== */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(200, 255, 0, 0.15);
    animation: particleFloat linear infinite;
}

.hero-particle:nth-child(odd) {
    background: rgba(200, 255, 0, 0.08);
    width: 2px;
    height: 2px;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(40px);
        opacity: 0;
    }
}

/* ===== Section Border Draw-in ===== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light) 20%, var(--accent) 50%, var(--border-light) 80%, transparent);
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto;
    opacity: 0.4;
}

.section-divider.visible {
    transform: scaleX(1);
}

/* ===== Smooth Hover Glow on Service Cards ===== */
.service-card {
    position: relative;
}

.service-card .card-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    background: radial-gradient(300px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(200, 255, 0, 0.06), transparent 60%);
}

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

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

    .hero-services {
        gap: 8px;
    }

    .hero-service-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
        min-height: 100dvh;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .about-section,
    .services-section,
    .work-section,
    .blog-section,
    .testimonials-section,
    .faq-section {
        padding: 100px 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
        align-items: start;
        width: 100%;
    }



    .clients-slide {
        gap: 40px;
    }

    .clients-slide img {
        height: 28px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .work-image {
        height: 180px;
    }

    .testimonials-track-wrap {
        margin: 0 -16px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .twentyfour-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-tag {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 28px 22px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    body,
    body * {
        cursor: auto;
    }
}

/* ===== Metrics Section ===== */
.metrics-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
    text-align: center;
}

.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 80px;
    text-align: center;
}

.metric-block {
    padding: 40px 20px;
    flex: 0 0 260px;
    text-align: center;
}

.metric-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: inline;
}

.metric-suffix {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--accent);
    opacity: 0.7;
}

.metric-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 12px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .metrics-grid {
        gap: 16px 40px;
    }
    .metric-block {
        flex: 0 1 200px;
    }
    .metrics-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .metric-block {
        padding: 24px 12px;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9994;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-float.visible {
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9994;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    padding: 20px 32px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.cookie-banner__link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__link:hover {
    opacity: 0.8;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
}

.cookie-banner__btn--accept {
    background: var(--accent);
    color: #000;
}

.cookie-banner__btn--accept:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.cookie-banner__btn--decline:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 16px 20px;
    }
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-banner__text {
        font-size: 13px;
    }
}
