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

html {
    overflow-y: scroll;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: white;
    padding: 20px 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 90px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 20px;
    transition: color 0.3s;
}

nav a:hover {
    color: #e67e22;
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    .logo-image {
        height: 50px;
    }

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 14px;
    }

    .header-content {
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 15px;
    }

    .logo-image {
        height: 40px;
    }

    nav ul {
        gap: 10px;
    }

    nav a {
        font-size: 12px;
    }
}

/* Hero Section - Full Screen */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-parallax-inner {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: transform;
}

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

.hero-fade-overlay {
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    will-change: opacity;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
}

.showreel-btn {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #e67e22;
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

@media (max-width: 768px) {
    .showreel-btn {
        padding: 12px 28px;
        font-size: 14px;
        top: 65%;
    }
}

@media (max-width: 480px) {
    .showreel-btn {
        padding: 8px 16px;
        font-size: 9px;
        top: 63%;
        border-radius: 18px;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 8px 25px rgba(230, 126, 34, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    }
}

.showreel-btn.pulsing {
    animation: pulse 1.5s ease-in-out;
}

.showreel-btn:hover {
    background: #d35400;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

/* Page Header Image */
.page-header-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: visible;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-header-image img,
.page-header-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lottie shelf characters - positioned on top of the shelf */
.shelf-lotties {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 10px;
    pointer-events: auto;
    z-index: 10;
}

.shelf-lottie {
    width: 195px;
    height: 195px;
    cursor: pointer;
    transition: transform 0.3s;
    transform-origin: bottom center;
}

.shelf-lottie.middle {
    width: 281px;
    height: 281px;
}

.shelf-lottie:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .page-header-image {
        height: 250px;
    }
    .shelf-lotties {
        gap: 0px;
        bottom: 40px;
    }
    .shelf-lottie {
        width: 122px;
        height: 122px;
        left: 0 !important;
        top: 0 !important;
        margin: 0 -20px;
    }
    .shelf-lottie.middle {
        width: 176px;
        height: 176px;
        margin: 0;
    }
    .shelf-lottie:last-child {
        margin: 0 -40px;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .page-header-image {
        height: 200px;
    }
    .shelf-lotties {
        gap: 0px;
        bottom: 35px;
    }
    .shelf-lottie {
        width: 98px;
        height: 98px;
        left: 0 !important;
        top: 0 !important;
        margin: 0 -15px;
    }
    .shelf-lottie:first-child {
        margin: 0 -15px 0 -65px;
    }
    .shelf-lottie.middle {
        width: 140px;
        height: 140px;
        margin: 0 0 0 -20px;
    }
    .shelf-lottie:last-child {
        margin: 0 -35px 0 -60px;
        position: relative;
        top: 13px !important;
        transform: none !important;
    }
}

/* Services Section */
.services {
    background: white;
    padding: 80px 50px;
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .services {
        padding: 40px 20px;
    }
}

/* Process Section */
.process-section {
    background: linear-gradient(160deg, #e9892e 0%, #e67e22 30%, #d35400 80%, #c0470a 100%);
    padding: 90px 50px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Paper grain texture overlay */
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    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)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Soft radial light in center */
.process-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Stitched seam lines at top and bottom edges */
.process-seam {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.25);
    z-index: 1;
    pointer-events: none;
}

.process-seam--top {
    top: 12px;
}

.process-seam--bottom {
    bottom: 12px;
}

/* Tiny stitch holes along seams */
.process-seam::before,
.process-seam::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.process-seam::before {
    left: 30px;
}

.process-seam::after {
    right: 30px;
}

/* Interactive patchwork grid canvas */
#processGridCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}


.process-inner {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-heading {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.process-heading-line {
    display: block;
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.process-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 55px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps container with connecting path */
.process-steps-wrap {
    position: relative;
}

.process-steps-path {
    display: none;
}

.process-connector {
    position: absolute;
    top: 52px;
    height: 0;
    border-top: 2.5px dashed rgba(255,255,255,0.3);
    z-index: 0;
    pointer-events: none;
}

/* Col centers: col1 = (100%-80px)/6, col2 = 50%, col3 = 100%-(100%-80px)/6. Offset 60px from center */
.process-connector--1 {
    left: calc((100% - 80px) / 6 + 60px);
    right: calc(50% + 60px);
}

.process-connector--2 {
    left: calc(50% + 60px);
    right: calc((100% - 80px) / 6 + 60px);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Badge: layered paper-cut circle */
.process-badge {
    position: relative;
    width: 104px;
    height: 104px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.process-badge-shadow {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    filter: blur(8px);
}

.process-badge-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2.5px dashed rgba(255,255,255,0.35);
}

.process-badge-inner {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff9f0, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(180, 80, 0, 0.25), inset 0 1px 2px rgba(255,255,255,0.8);
}

.process-badge-num {
    color: #d35400;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

/* Step icon */
.process-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    opacity: 0.92;
}

/* Step card */
.process-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 24px 22px 28px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s, background 0.3s;
}

.process-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.process-step-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 25px;
    }

    .process-heading {
        font-size: 28px;
    }

    .process-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 380px;
        margin: 0 auto;
    }

    .process-steps-path,
    .process-connector {
        display: none;
    }

    .process-step-title {
        font-size: 21px;
    }

    .process-step-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 50px 20px;
    }

    .process-heading {
        font-size: 24px;
    }

    .process-badge {
        width: 88px;
        height: 88px;
    }

    .process-badge-inner {
        inset: 10px;
    }

    .process-badge-num {
        font-size: 26px;
    }

    .process-intro {
        font-size: 15px;
    }

    .process-card {
        padding: 20px 18px 24px;
    }
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-card-lottie {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.service-card-lottie svg {
    width: 100% !important;
    height: auto !important;
    display: block;
}

/* CTA Section */
.cta-section {
    background: #f9f9f9;
    padding: 80px 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-btn {
    background: #e67e22;
    color: white;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    margin-bottom: 30px;
}

.cta-btn:hover {
    background: #d35400;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

/* Footer Logo and Social Media */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.footer-logo {
    cursor: pointer;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e67e22;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.social-icon:hover {
    background: #d35400;
    transform: scale(1.1);
}

/* Footer Radial Menu */
.footer-radial-wrap {
    position: relative;
    display: inline-block;
}

.footer-radial-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 100;
}

.footer-radial-item {
    position: absolute;
    width: 82px;
    height: 82px;
    margin-left: -41px;
    margin-top: -41px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e67e22;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    opacity: 0;
    transform: scale(0);
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 20px rgba(230, 126, 34, 0.1);
    text-decoration: none;
    color: #333;
    font-family: 'Nunito', sans-serif;
    gap: 2px;
}

.footer-radial-item:hover {
    transform: scale(1.15) !important;
    background: #e67e22;
    color: white;
    border-color: #d35400;
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.35);
}

.footer-radial-item:hover .footer-radial-icon {
    color: white;
}

.footer-radial-item .footer-radial-icon {
    width: 22px;
    height: 22px;
    color: #e67e22;
    transition: color 0.25s;
}

.footer-radial-item .footer-radial-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-align: center;
}

.footer-radial-wrap.radial-open .footer-radial-item {
    opacity: 1;
    transform: scale(1);
}

.footer-radial-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(230, 126, 34, 0.5);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 99;
}

.footer-radial-wrap.radial-open .footer-radial-ring {
    opacity: 0.6;
    animation: footerRingPulse 2.5s ease-in-out infinite;
}

@keyframes footerRingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@media (max-width: 768px) {
    .footer-radial-item {
        width: 70px;
        height: 70px;
        margin-left: -35px;
        margin-top: -35px;
    }
    .footer-radial-item .footer-radial-icon {
        width: 18px;
        height: 18px;
    }
    .footer-radial-item .footer-radial-label {
        font-size: 8px;
    }
}

/* Service Pages */
.service-page {
    display: none;
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Patchwork texture canvas — shared across white-background pages */
.patchwork-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.service-page.active {
    display: block;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
    position: relative;
    z-index: 1;
}

.service-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.service-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Video Grid for Animation Page */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.video-block {
    position: relative;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Thumbnail: show static image by default, gif on hover */
.video-block .thumb-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-block .thumb-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.video-block:hover .thumb-static {
    display: none;
}

.video-block:hover .thumb-gif {
    display: block;
}

.video-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 126, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-block:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(211, 84, 0, 0.9);
}

/* Case Study Page */
.case-study-page {
    display: none;
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.case-study-page.active {
    display: block;
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 50px 80px;
    position: relative;
    z-index: 1;
}

.case-study-back-btn {
    background: none;
    border: 2px solid #e67e22;
    color: #e67e22;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background 0.3s, color 0.3s;
    padding: 12px 28px;
    border-radius: 30px;
}

.case-study-back-btn:hover {
    background: #e67e22;
    color: white;
}

.case-study-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.case-study-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.case-study-video.playing {
    display: block;
}

.case-study-thumbnail.hidden {
    display: none;
}

.case-study-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.9);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 3;
}

.case-study-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 26px solid white;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 5px;
}

.case-study-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(211, 84, 0, 0.9);
}

.case-study-play-btn.hidden {
    display: none;
}

.case-study-expand-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 3;
}

.case-study-expand-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.case-study-expand-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.case-study-info {
    padding: 10px 0;
}

.case-study-info h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.case-study-info .case-study-client {
    font-size: 18px;
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 25px;
}

.case-study-details {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.case-study-detail {
    text-align: center;
}

.case-study-detail .label {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.case-study-detail .value {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.case-study-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.case-study-description h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    margin-top: 30px;
}

.case-study-description p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .case-study-content {
        padding: 30px 20px 60px;
    }

    .case-study-info h1 {
        font-size: 28px;
    }

    .case-study-details {
        gap: 20px;
    }

    .case-study-play-btn {
        width: 60px;
        height: 60px;
    }

    .case-study-play-btn::after {
        border-left: 20px solid white;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

@media (max-width: 480px) {
    .case-study-content {
        padding: 20px 15px 40px;
    }

    .case-study-info h1 {
        font-size: 22px;
    }

    .case-study-details {
        flex-wrap: wrap;
        gap: 15px;
    }

    .case-study-play-btn {
        width: 50px;
        height: 50px;
    }

    .case-study-play-btn::after {
        border-left: 16px solid white;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 3px;
    }

    .case-study-description {
        font-size: 16px;
    }
}

/* Interactive Mascot Grid */
.mascot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mascot-block {
    position: relative;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mascot-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mascot-block .thumb-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mascot-block .thumb-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.mascot-block:hover .thumb-static {
    display: none;
}

.mascot-block:hover .thumb-gif {
    display: block;
}

.try-me-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(230, 126, 34, 0.9);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    transition: all 0.3s;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-block:hover .try-me-button {
    background: rgba(211, 84, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Subsection Styles */
.subsection {
    margin: 60px 0;
    padding: 0 20px;
}

.subsection-title {
    font-size: 36px;
    color: #e67e22;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.subsection-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0 auto 30px;
    max-width: 900px;
    text-align: center;
}

/* About Profile Section */
.about-profile {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 15px;
}

.profile-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.profile-text h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.profile-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {
    .subsection-title {
        font-size: 28px;
    }

    .subsection-description {
        font-size: 16px;
    }

    .about-profile {
        flex-direction: column;
        padding: 30px 20px;
    }

    .profile-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .profile-text h2 {
        font-size: 24px;
        text-align: center;
    }

    .profile-text p {
        font-size: 16px;
    }
}

/* Image Grid for Illustration Page */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.image-block {
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-block:hover {
    transform: scale(1.05);
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Comic Easter Egg Effects */
.comic-easter-egg {
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep */
.comic-easter-egg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        transparent 70%
    );
    transform: skewX(-15deg);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: none;
}

.comic-easter-egg.shimmer::before {
    animation: shimmerSweep 1.2s ease-in-out;
}

@keyframes shimmerSweep {
    0% { left: -60%; opacity: 1; }
    100% { left: 130%; opacity: 1; }
}

/* Sparkles */
.comic-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8), 0 0 12px 4px rgba(230, 126, 34, 0.3);
}

.comic-sparkle.animate {
    animation: sparkleFloat 1.8s ease-out forwards;
}

@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 1; transform: translateY(-5px) scale(1); }
    70% { opacity: 0.8; transform: translateY(-35px) scale(0.8); }
    100% { opacity: 0; transform: translateY(-55px) scale(0); }
}

/* Wobble/Tilt */
.comic-easter-egg.wobble {
    animation: comicWobble 0.6s ease-in-out;
}

@keyframes comicWobble {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(1.2deg); }
    40% { transform: rotate(-1deg); }
    60% { transform: rotate(0.6deg); }
    80% { transform: rotate(-0.3deg); }
    100% { transform: rotate(0deg); }
}

/* Hover: Comic "Pow" effect */
.comic-easter-egg:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.comic-hover-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.comic-easter-egg:hover .comic-hover-hint {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.comic-pow {
    background: #e67e22;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 22px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.5);
}

.comic-halftone-border {
    display: none;
}

.comic-easter-egg:hover .comic-halftone-border {
    display: block;
    position: absolute;
    inset: 0;
    border: 3px solid #e67e22;
    border-radius: 10px;
    pointer-events: none;
    z-index: 3;
    box-shadow: inset 0 0 20px rgba(230, 126, 34, 0.15);
}

/* Modal for enlarged images */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    width: auto;
    height: auto;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s;
}

.close-modal:hover {
    transform: scale(1.2);
}

/* Content Page Styles */
.content-image {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-video-wrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.content-video-wrap video {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.content-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: rgba(230, 126, 34, 0.85);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 5;
}

.content-video-play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 28px;
    margin-top: 21px;
}

.content-video-play-btn.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
    animation: contentPlayPulse 1.5s ease-in-out infinite;
}

@keyframes contentPlayPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4); }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 15px rgba(230, 126, 34, 0); }
}

.back-btn {
    background: #e67e22;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.back-btn:hover {
    background: #d35400;
    transform: scale(1.05);
}

/* Shelf Navigation Buttons */
.shelf-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px 0;
}

.shelf-nav-btn {
    background: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shelf-nav-btn:hover {
    background: #e67e22;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.shelf-nav-spacer {
    visibility: hidden;
    padding: 10px 24px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .shelf-nav {
        padding: 15px 20px 0;
    }
    .shelf-nav-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .shelf-nav {
        padding: 12px 15px 0;
    }
    .shelf-nav-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* Shelf Page Slide Transitions */
@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(100%); opacity: 0; }
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

.service-page.slide-out-left {
    animation: slideOutLeft 0.45s ease-in-out forwards;
}

.service-page.slide-in-from-right {
    animation: slideInFromRight 0.45s ease-in-out forwards;
}

.service-page.slide-out-right {
    animation: slideOutRight 0.45s ease-in-out forwards;
}

.service-page.slide-in-from-left {
    animation: slideInFromLeft 0.45s ease-in-out forwards;
}

/* Slide positioning handled via JS inline styles to prevent scroll jump */

/* Contact Page */
.contact-page {
    display: none;
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-page.active {
    display: block;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 80px 50px;
}

.contact-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
}

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

.submit-btn {
    background: #e67e22;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #d35400;
    transform: scale(1.02);
}

/* About Page */
.about-page {
    display: none;
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-page.active {
    display: block;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 80px 50px;
}

.about-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.about-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-lottie {
    width: 100%;
    max-width: 1600px;
    height: 900px;
    margin: 40px auto;
    display: block;
}

.about-video {
    width: 100%;
    max-width: 1600px;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ============================
   Tools Page — Warm Light Theme
   ============================ */
.tools-page {
    display: none;
    background: linear-gradient(180deg, #fae7cd, #f5dbb8 50%, #eedcbe);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.tools-page.active {
    display: block;
}

/* Warm subtle grid */
.tools-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 40px 40px;
}

/* Subtle warm grid lines */
.tools-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(180, 140, 90, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 140, 90, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Interactive grid canvas */
#toolsGridCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.tools-title {
    font-family: 'Nunito', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5783b3 0%, #d76b2b 50%, #5783b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px;
    position: relative;
    text-shadow: none;
}

.tools-title::after {
    content: 'TOOLS';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #d76b2b;
    filter: blur(25px);
    opacity: 0.15;
    pointer-events: none;
    -webkit-text-fill-color: #d76b2b;
    background: none;
    -webkit-background-clip: unset;
}

.tools-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #6b5a45;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 60px;
    position: relative;
}

/* Cyber Shelf */
.tools-shelf-area {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.tools-shelf {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}


/* Tool Card */
.tool-card {
    position: relative;
    width: 320px;
    background: #faf3e8;
    border: 1px solid #d4b896;
    border-radius: 16px;
    padding: 0;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: toolFloat 4s ease-in-out infinite;
    cursor: default;
    box-shadow: 0 4px 20px rgba(120, 80, 40, 0.1);
}

.tool-card:hover {
    animation-play-state: paused;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(120, 80, 40, 0.2);
    border-color: #d76b2b;
}

@keyframes toolFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Radial promo video button — pops out on card hover */
.tool-promo-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border: 2px solid rgba(215, 107, 43, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(215, 107, 43, 0.3);
    z-index: 10;
}

.tool-card:hover .tool-promo-btn {
    opacity: 1;
    transform: scale(1);
}

.tool-promo-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 6px 25px rgba(215, 107, 43, 0.5);
    background: linear-gradient(135deg, #f0932b 0%, #e67e22 100%);
}

.tool-promo-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 2px;
}

.tool-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-bottom: 1px solid #d4b896;
    border-radius: 16px 16px 0 0;
}

.tool-card-body {
    padding: 24px;
}

.tool-card-name {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #2a1f14;
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.tool-card-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b5a45;
    line-height: 1.6;
    margin: 0 0 20px;
}

.tool-card-trial {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #a08a70;
    font-style: italic;
    margin: 0 0 16px;
}

.tool-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tool-price {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #d76b2b;
    letter-spacing: 1px;
}

.tool-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 107, 43, 0.3);
}

.tool-buy-btn:hover {
    background: linear-gradient(135deg, #f0932b 0%, #e67e22 100%);
    box-shadow: 0 6px 25px rgba(215, 107, 43, 0.4);
    transform: scale(1.05);
}

.tool-buy-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Coming Soon placeholder card */
.tool-card-coming-soon {
    width: 320px;
    min-height: 380px;
    border: 2px dashed rgba(180, 140, 90, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #a08a70;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tool-card-coming-soon svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
    fill: #d76b2b;
}

/* Tools Back Button */
.tools-back-btn {
    display: block;
    margin: 0 auto 60px;
    padding: 15px 40px;
    background: transparent;
    color: #6b5a45;
    border: 1px solid #d4b896;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tools-back-btn:hover {
    color: #d76b2b;
    border-color: #d76b2b;
    box-shadow: 0 4px 20px rgba(215, 107, 43, 0.15);
}

/* Responsive — Tools Page */
@media (max-width: 768px) {
    .tools-hero {
        padding: 60px 20px 30px;
    }

    .tools-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .tools-title::after {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .tools-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .tools-shelf-area {
        padding: 0 20px 80px;
    }

    .tool-card {
        width: 100%;
        max-width: 360px;
    }

    .tool-card-coming-soon {
        width: 100%;
        max-width: 360px;
        min-height: 200px;
    }

    .tool-promo-btn {
        width: 48px;
        height: 48px;
        top: -14px;
        right: -14px;
    }

    /* On mobile, show promo button when card scrolls into view */
    .tool-card.in-view .tool-promo-btn {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .tools-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .tools-title::after {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .tools-subtitle {
        font-size: 12px;
    }

    .tool-card-body {
        padding: 18px;
    }

    .tool-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tool-buy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Home Page Container */
.home-page {
    display: block;
}

.home-page.hidden {
    display: none;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.video-modal-content video {
    max-width: 100%;
    max-height: 90vh;
}

/* Interactive Experience Modal */
.experience-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.experience-modal.active {
    display: flex;
}

.experience-modal-content {
    position: relative;
    width: 90%;
    height: 85%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #111;
}

.experience-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.close-experience {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    line-height: 1;
    padding: 0;
}

.close-experience:hover {
    background: rgba(230, 126, 34, 0.9);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .experience-modal-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .close-experience {
        top: 8px;
        right: 8px;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .video-grid,
    .image-grid,
    .mascot-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .try-me-button {
        font-size: 14px;
        padding: 10px 22px;
    }

    .footer-content {
        flex-direction: column;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 90%;
}

.toast-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-success {
    background: #e67e22;
    color: white;
}

.toast-error {
    background: #e74c3c;
    color: white;
}

@media (max-width: 480px) {
    .toast {
        font-size: 14px;
        padding: 14px 24px;
        bottom: 20px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f26522;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse 2s ease-in-out infinite;
}

.back-to-top:hover {
    background: #d4551a;
    animation: none;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(242, 101, 34, 0.3); }
    50% { box-shadow: 0 2px 20px rgba(242, 101, 34, 0.6); }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
