
:root {
    --orange: #FF6630;
    --pink: #E8196E;
    --red: #E81929;
    --teal: #5BA8A4;
    --dark: #1A1A1A;
    --dark2: #222222;
    --light: #FAFAFA;
    --grey: #888;
    --border: rgba(26, 26, 26, 0.12);
    --font: 'Inter', sans-serif;
    --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    cursor: none;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: none;
    font-family: var(--font);
}


.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background: var(--dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.25s;
    mix-blend-mode: difference;
}

body.cursor-hover .cursor {
    width: 8px;
    height: 8px;
}

body.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
}

body.dark-cursor .cursor {
    background: #fff;
}

body.dark-cursor .cursor-follower {
    border-color: #fff;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0 2.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.header.scrolled {
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.header.dark-header {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(16px);
}


.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--dark);
    border-radius: 60px;
    padding: 8px 17px 8px 27px;
    gap: 11px;
    transition: border-color 0.3s;
}

.header.dark-header .logo-wrapper {
    border-color: #fff;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.header.dark-header .logo-text {
    color: #fff;
}

.logo-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.logo-video-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-video {
    height: 70px;
    width: auto;
    display: block;
    border-radius: 40px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 0 1.5rem;
    height: 46px;
    border: 1.5px solid var(--dark);
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    cursor: none;
}

.btn-cta:hover {
    background: var(--dark);
    color: #fff;
}

.header.dark-header .btn-cta {
    border-color: #fff;
    color: #fff;
}

.header.dark-header .btn-cta:hover {
    background: #fff;
    color: var(--dark);
}

.hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.3s, background 0.3s;
    transform-origin: center;
}

.header.dark-header .hamburger span {
    background: #fff;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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


.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 800;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2.5rem 3rem;
    clip-path: circle(0% at calc(100% - 64px) 40px);
    transition: clip-path 0.7s var(--ease);
    pointer-events: none;
}

.mobile-menu.open {
    clip-path: circle(150% at calc(100% - 64px) 40px);
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav a {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.2s;
}

.mobile-menu.open .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-nav a:nth-child(1) {
    transition-delay: 0.15s;
}

.mobile-menu.open .mobile-nav a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.open .mobile-nav a:nth-child(3) {
    transition-delay: 0.25s;
}

.mobile-menu.open .mobile-nav a:nth-child(4) {
    transition-delay: 0.3s;
}

.mobile-menu.open .mobile-nav a:nth-child(5) {
    transition-delay: 0.35s;
}

.mobile-nav a:hover {
    color: var(--orange);
}

.menu-footer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s 0.5s var(--ease), transform 0.4s 0.5s var(--ease);
}

.mobile-menu.open .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-social a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 1.5rem;
    transition: color 0.2s;
}

.menu-social a:hover {
    color: #fff;
}


.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    width: 100%;
}

.hero-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.hero-heading .pink {
    color: var(--orange);
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.75;
    color: #444;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    height: 52px;
    border: 1.5px solid var(--dark);
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
    cursor: none;
}

.btn-outline:hover {
    background: var(--dark);
    color: #fff;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    height: 52px;
    background: var(--dark);
    border: 1.5px solid var(--dark);
    border-radius: 60px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s, border-color 0.3s;
    cursor: none;
}

.btn-solid:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


.about-preview {
    padding: 6rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-media {
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.media-card {
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    position: relative;
    aspect-ratio: 4/3;
}

.media-card.tall {
    grid-row: span 2;
    aspect-ratio: unset;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.media-card:hover img {
    transform: scale(1.04);
}

.media-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.contact-bubble {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #C0F000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    color: var(--dark);
    z-index: 10;
    animation: rotateBubble 8s linear infinite;
    cursor: none;
}

@keyframes rotateBubble {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-bubble span {
    animation: rotateBubbleText 8s linear infinite reverse;
    display: block;
}

.about-text {
}

.about-heading {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 1.5rem;
}

.about-heading strong {
    font-weight: 700;
}

.about-services {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-service-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.about-service-item:first-child {
    border-top: 1px solid var(--border);
}


.section-label {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-label .dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: -1px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}


.our-works {
    background: var(--dark);
    padding: 5rem 2.5rem;
    color: #fff;
}

.our-works .section-label {
    color: #fff;
}

.our-works .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
    row-gap: 5rem;
    margin-bottom: 3rem;
}

.work-card {
    border-radius: 20px;
    background: #111;
    overflow: hidden;
    position: relative;
    cursor: none;
    transition: transform 0.4s var(--ease);
}

.work-card:hover {
    transform: scale(1.02);
    z-index: 2;
}

.work-card.vertical {
    aspect-ratio: 9/16;
}

.work-card.wide {
    grid-column: span 4;
    aspect-ratio: 16/7;
}

.work-card-inner {
    width: 100%;
    height: 100%;
    min-height: 220px;
    position: relative;
    background: #1C1C1C;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    overflow: hidden;
}

.work-card-inner video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03) translateZ(0);
}

.work-card.landscape {
    grid-column: span 3;
    aspect-ratio: 16/9;
}

.work-card.half {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.work-card-label {
    font-size: 0.85rem;
    color: var(--red);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.work-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.work-card:hover .work-card-info {
    transform: translateY(0);
}

.work-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.work-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.works-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    height: 52px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 60px;
    font-size: 1rem;
    color: #fff;
    transition: background 0.3s, border-color 0.3s;
    cursor: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}


.service-section {
    padding: 6rem 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.service-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: sticky;
    top: 100px;
}

.service-right {
}

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--dark);
    border-radius: 18px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--red);
    font-style: italic;
    font-weight: 500;
    cursor: none;
    transition: transform 0.3s var(--ease);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03) translateZ(0);
}

.service-card-label {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px 180px;
    grid-template-areas:
        "reel1 wide1 wide1"
        "wide2 wide2 reel2"
        "sq1   sq2   sq3";
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.vg-card {
    border-radius: 18px;
    background: var(--dark);
    overflow: hidden;
    position: relative;
    cursor: none;
    transition: transform 0.35s var(--ease);
}

.vg-card:hover {
    transform: scale(1.02);
    z-index: 2;
}

.vg-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03) translateZ(0);
}

.vg-card .vg-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.vg-reel1 { grid-area: reel1; }
.vg-wide1 { grid-area: wide1; }
.vg-wide2 { grid-area: wide2; }
.vg-reel2 { grid-area: reel2; }
.vg-sq1   { grid-area: sq1; }
.vg-sq2   { grid-area: sq2; }
.vg-sq3   { grid-area: sq3; }


.service-card.wide {
    grid-column: span 2;
    aspect-ratio: 16/6;
}

.service-card.tall {
    aspect-ratio: 9/16;
}


.brand-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.brand-item {
    flex: 1;
    border-radius: 18px;
    background: var(--dark);
    overflow: hidden;
    position: relative;
    cursor: none;
    transition: transform 0.3s var(--ease);
}

.brand-item:hover {
    transform: scale(1.02);
}

.brand-item video {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.03) translateZ(0);
}

.brand-item .service-card-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
}


.service-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    padding: 0 1.75rem;
    height: 46px;
    border: 1.5px solid var(--dark);
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
    cursor: none;
}

.btn-service:hover {
    background: var(--dark);
    color: #fff;
}


.accordion {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    text-align: left;
    cursor: none;
    transition: color 0.2s;
}

.accordion-trigger:hover {
    color: var(--orange);
}

.accordion-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease), border-color 0.2s;
}

.accordion-trigger.active .accordion-icon {
    transform: rotate(45deg);
    border-color: var(--orange);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.accordion-body p {
    padding: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
}


.photo-collage {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 60vh;
    min-height: 400px;
}

.collage-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.collage-img {
    height: calc(60vh - 2rem);
    min-height: 300px;
    width: auto;
    aspect-ratio: 4/3;
    border-radius: 16px;
    background: #111;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.collage-img.vertical {
    aspect-ratio: 9/16;
}

.collage-img img,
.collage-img video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03) translateZ(0);
}

.collage-img a {
    display: block;
    position: absolute;
    inset: 0;
    cursor: pointer;
}

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

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


.diff-scroll {
    padding: 5rem 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.diff-scroll-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}


.diff-items {
    padding-top: 1rem;
}

.diff-item {
    padding: 2.8rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    opacity: 0.3;
    transition: opacity 0.45s ease;
    cursor: default;
}

.diff-item:first-child {
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.diff-item.is-active {
    opacity: 1;
}

.diff-item-num {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FF6630;
    margin-bottom: 0.75rem;
}

.diff-item-title {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.diff-item-text {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555;
    max-width: 420px;
}


.diff-sticky {
    position: sticky;
    top: calc(50vh - 240px);
    height: 480px;
}

.diff-visual {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
}

.diff-visual.is-active {
    opacity: 1;
    transform: scale(1);
}


.diff-visual-1 {
    background: linear-gradient(135deg, #FF6630 0%, #e04010 100%);
    color: #fff;
}

.diff-visual-2 {
    background: #1A1A1A;
    color: #fff;
}

.diff-visual-3 {
    background: linear-gradient(135deg, #1A1A1A 0%, #FF6630 100%);
    color: #fff;
}

.diff-visual-4 {
    background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
    color: #fff;
}


.diff-visual-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.diff-visual-icon svg {
    width: 44px;
    height: 44px;
}

.diff-visual-big-num {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.12;
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    letter-spacing: -0.04em;
}

.diff-visual-label {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.diff-visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.diff-visual-tag {
    padding: 0.35rem 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.process {
    padding: 5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process .section-label {
    justify-content: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    counter-reset: step;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    counter-increment: step;
}

.process-step:first-child {
    border-top: 1px solid var(--border);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.12);
    line-height: 1;
    padding-top: 0.2rem;
}

.step-content {
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.awards-section {
    background: #111;
    padding: 7rem 2.5rem;
    overflow: hidden;
}

.awards-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}


.awards-badges {
    position: relative;
    height: 380px;
}

.badge-float {
    position: absolute;
    will-change: transform;
    cursor: default;
}

.badge-float:nth-child(1) {
    top: 30px;
    left: 50px;
}

.badge-float:nth-child(2) {
    top: 90px;
    left: 210px;
}

.badge-float:nth-child(3) {
    top: 200px;
    left: 115px;
}

.badge-circle {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s;
}

.badge-purple {
    background: #6B3FA0;
}

.badge-white {
    background: #fff;
}

.badge-light {
    background: #f2f2f2;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.badge-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-big {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.badge-sub-dark {
    font-size: 0.6rem;
    color: #666;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.badge-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.badge-stars {
    font-size: 0.6rem;
    color: #FF6630;
    letter-spacing: 2px;
}

.badge-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}


.awards-text {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.awards-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
}

.awards-dot-red {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF3B3B;
    flex-shrink: 0;
}

.awards-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.btn-awards {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 40px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s, border-color 0.3s;
}

.btn-awards:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .awards-inner {
        grid-template-columns: 1fr;
    }

    .awards-badges {
        height: 280px;
        margin-bottom: 2rem;
    }

    .badge-circle {
        width: 120px;
        height: 120px;
    }

    .badge-float:nth-child(2) {
        left: 170px;
    }
}


.team {
    padding: 5rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
}

.team-photo {
    background: var(--dark);
    border-radius: 24px;
    aspect-ratio: 9/13;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.team-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}


.footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 2.5rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-wrapper {
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.15);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    display: block;
    flex-shrink: 0;
}

.footer-logo-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
}

.footer-tagline {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-socials a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #fff;
}


.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0 auto;
}


.fade-up {
    opacity: 0;
    transform: translateY(50px);
}

.fade-in {
    opacity: 0;
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
}


@media (min-width: 1440px) {
    .our-works    { padding: 5rem 5rem; }
    .service-section { padding: 6rem 4rem; }
    .about-preview   { padding: 6rem 4rem; }
}


@media (max-width: 1100px) {
    .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }

    .works-grid { grid-template-columns: 1fr 1fr; }
    .work-card.vertical { aspect-ratio: 4/3; }
    .work-card.wide,
    .work-card.landscape,
    .work-card.half { grid-column: span 2; }

    .video-grid {
        grid-template-rows: 220px 220px 160px;
    }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .diff-scroll-inner { grid-template-columns: 1fr; gap: 3rem; }
    .diff-sticky { display: none; }
}


@media (max-width: 768px) {
    body { cursor: auto; }
    button { cursor: pointer; }
    .cursor, .cursor-follower { display: none; }


    .header { padding: 0 1.25rem; height: 64px; }
    .logo-wrapper { padding: 5px 10px 5px 14px; gap: 8px; }
    .logo-icon { width: 42px; height: 42px; }
    .logo-text { font-size: 0.8rem; }
    .logo-video { height: 46px; }
    .btn-cta { display: none; }


    .hero { padding: 96px 1.25rem 3rem; }
    .scroll-indicator { display: none; }


    .about-preview { padding: 3.5rem 1.25rem; }
    .media-grid { grid-template-columns: 1fr 1fr; }


    .our-works { padding: 3.5rem 1.25rem; }
    .works-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .work-card.vertical { aspect-ratio: 4/3; }
    .work-card.wide,
    .work-card.landscape,
    .work-card.half { grid-column: span 2; aspect-ratio: 16/9; }
    .work-card-info { transform: translateY(0); }


    .video-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.6rem;
        grid-template-areas:
            "reel1 reel2"
            "wide1 wide1"
            "wide2 wide2"
            "sq1   sq2";
    }
    .vg-reel1, .vg-reel2 { aspect-ratio: 4/3; }
    .vg-wide1, .vg-wide2 { aspect-ratio: 16/9; grid-column: span 2; }
    .vg-sq1, .vg-sq2 { aspect-ratio: 1; }
    .vg-sq3 { display: none; }


    .service-section { padding: 3.5rem 1.25rem; }
    .service-layout { grid-template-columns: 1fr; gap: 2rem; }
    .service-title { position: static; font-size: clamp(2rem, 7vw, 2.8rem); }
    .service-cards-grid { grid-template-columns: 1fr 1fr; }
    .service-card.wide { aspect-ratio: 16/7; }
    .service-card.tall { grid-row: auto !important; aspect-ratio: 1; }


    .brand-row { gap: 0.5rem; }


    /* touch targets */
    .btn-service { cursor: pointer; min-height: 48px; }
    .accordion-trigger { cursor: pointer; min-height: 48px; }
    .accordion-icon { width: 36px; height: 36px; }


    .photo-collage { height: 50vw; min-height: 220px; }
    .collage-img { height: calc(50vw - 1.5rem); min-height: 200px; }


    .diff-scroll { padding: 3.5rem 1.25rem; }
    .diff-item { opacity: 1; }
    .diff-item-text { max-width: 100%; }
    .diff-item-title { font-size: 1.3rem; }


    .process { padding: 3.5rem 1.25rem; }
    .process-step { grid-template-columns: 40px 1fr; }


    .awards-section { padding: 3.5rem 1.25rem !important; }
    .awards-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .awards-badges { height: 220px !important; }
    .badge-float:nth-child(1) { top: 20px !important; left: 20px !important; }
    .badge-float:nth-child(2) { top: 70px !important; left: 50% !important; transform: translateX(-20%) !important; }
    .badge-float:nth-child(3) { top: 140px !important; left: 30px !important; }
    .badge-circle { width: 110px !important; height: 110px !important; }


    .team { padding: 3.5rem 1.25rem; }
    .team-grid { grid-template-columns: 1fr; gap: 2rem; }
    .team-card { grid-template-columns: 110px 1fr; }


    .footer { padding: 3rem 1.25rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}


@media (max-width: 480px) {
    .logo-wrapper { padding: 4px 8px 4px 12px; gap: 6px; }
    .logo-icon { width: 36px; height: 36px; }
    .logo-text { font-size: 0.72rem; }
    .logo-video { height: 40px; }


    .works-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .work-card.wide,
    .work-card.landscape,
    .work-card.half { grid-column: span 1; aspect-ratio: 16/9; }


    .video-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "wide1"
            "reel1"
            "wide2"
            "sq1";
        gap: 0.5rem;
    }
    .vg-wide1, .vg-wide2 { aspect-ratio: 16/9; grid-column: span 1; }
    .vg-reel1 { aspect-ratio: 4/3; }
    .vg-reel2, .vg-sq2, .vg-sq3 { display: none; }
    .vg-sq1 { aspect-ratio: 16/9; }


    .service-cards-grid { grid-template-columns: 1fr; }
    .service-card { aspect-ratio: 16/9; }
    .service-card.tall { aspect-ratio: 16/9 !important; }


    .brand-row { flex-direction: column; }
    .brand-item { flex: none; width: 100%; }



    .photo-collage { height: 42vw; min-height: 180px; }
    .collage-img { height: calc(42vw - 1rem); min-height: 160px; }


    .team-card { grid-template-columns: 1fr; }
    .team-photo { aspect-ratio: 16/9; }


    .badge-circle { width: 88px !important; height: 88px !important; }
    .awards-badges { height: 180px !important; }


    .footer-top { gap: 1.5rem; }
}


@media (max-width: 360px) {
    .hero { padding: 88px 1rem 2.5rem; }
    .our-works, .service-section, .about-preview,
    .diff-scroll, .process, .team { padding: 3rem 1rem; }
    .footer { padding: 2.5rem 1rem 1.5rem; }

    .logo-wrapper { padding: 3px 6px 3px 10px; gap: 5px; }
    .logo-icon { width: 30px; height: 30px; }
    .logo-text { font-size: 0.65rem; }

    .mobile-nav a { font-size: 1.8rem; }

    .video-grid { gap: 0.4rem; }
    .works-grid { gap: 0.4rem; }
}
