:root {
    --bg-dark: #0c0d12;
    --text-primary: #FFFFFF;
    --text-muted: #888888;

    --accent-cyan: #00DBDB;

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

body,
html {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: auto;
}

body.loading {
    overflow: hidden;
}

/* -------------------------------------
   PRELOADER & CURSOR
   ------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.preloader-percent {
    margin-top: 10px;
    font-weight: 600;
    color: var(--accent-cyan);
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.hide-cursor {
    opacity: 0;
}

/* -------------------------------------
   WEBGL BACKGROUND
   ------------------------------------- */
#canvas-orbit {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

/* -------------------------------------
   KONTENTA PILL NAV
   ------------------------------------- */
.nav-pill-wrap {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.nav-pill {
    pointer-events: auto;
    background: rgba(40, 40, 45, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 10px 10px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pill-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.pill-links {
    display: flex;
    gap: 30px;
}

.pill-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.pill-links a:hover {
    color: var(--accent-cyan);
}

.pill-btn {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
}

.pill-btn:hover {
    background: var(--accent-cyan);
    color: #000;
}

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 30px;
    right: 30px;
    pointer-events: auto;
    background: rgba(40, 40, 45, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 101;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.m-bar {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* X Animation States provided via JS class 'active-btn' */
.mobile-menu-btn.active-btn .m-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active-btn .m-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active-btn .m-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover, .mobile-link:active {
    color: var(--accent-cyan);
}

/* -------------------------------------
   LAYOUT
   ------------------------------------- */
.smooth-scroll-wrapper {
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-pad {
    padding: 15vh 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* -------------------------------------
   HERO & WAVING 3D CSS
   ------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    position: relative;
}

.hero-container {
    padding-top: 80px; 
    z-index: 2;
    position: relative;
    width: 100%;
}

/* Floating CSS 3D Shapes */
.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    top: 10%;
    left: 15%;
    animation: waveOrb 8s ease-in-out infinite alternate;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #ffffff;
    bottom: 10%;
    right: 10%;
    animation: waveOrb 10s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 219, 219, 0.5);
    top: 40%;
    left: 50%;
    animation: waveOrb 6s ease-in-out infinite alternate;
}

@keyframes waveOrb {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) scale(1.1) rotate(45deg);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-top {
    margin-bottom: 20px;
}

.subhead {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 11vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

/* Kontenta Doodle Wrap */
.word-wrap {
    position: relative;
    display: inline-block;
}

.doodle-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 110%;
    height: 110%;
    pointer-events: none;
    z-index: -1;
    overflow: visible;
}

.doodle-path {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.5;
}

/* -------------------------------------
   SERVICES LIST
   ------------------------------------- */
.service-list {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin: 0 -40px; 
}

.service-row {
    display: flex;
    align-items: center;
    padding: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: background 0.4s;
}

.service-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.s-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    width: 10%;
}

.s-content {
    flex-grow: 1;
}

.s-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.s-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.view-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    /* Specific request 'View more' means no auto uppercase here */
}

.service-row:hover .view-btn {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* -------------------------------------
   BRILLIANT DIGITAL SPLIT REVIEWS SECTION
   ------------------------------------- */
.reviews-spotlight {
    position: relative;
    background: #040508;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 15vh;
}

.review-split-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}

.permanent-text {
    position: relative;
    z-index: 5;
    pointer-events: none;
}

.review-left {
    flex: 1;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-right {
    flex: 1;
    position: relative;
}

.review-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    pointer-events: auto;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-muted);
    pointer-events: auto;
}

.stars {
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #FFD700;
}

.review-body {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Base Layers */
.spotlight-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Scattered Reviews randomly distributed around the Section */
.small-review {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.8;
    max-width: 250px;
}

.mini-stars {
    color: #FFD700;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.mini-quote {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 2px;
}

.mini-author {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 
  Scattered Coordinates mapping over the ENTIRE section.
  The Main Text is roughly between Left: 0-50% and Top: 25%-75%.
  These coordinates are mathematically plotted to dodge that safe zone.
*/

/* Left Side (Above and Below the main text) */
.cr-1 {
    top: 5%;
    left: 5%;
    transform: rotate(-3deg);
}

.cr-2 {
    top: 80%;
    left: 8%;
    transform: rotate(4deg);
}

/* Center Column (High and Low) */
.cr-3 {
    top: 8%;
    left: 35%;
    transform: rotate(2deg);
}

.cr-4 {
    top: 85%;
    left: 40%;
    transform: rotate(-5deg);
}

/* Right Side (Randomly offset out of the way) */
.cr-5 {
    top: 15%;
    right: 10%;
    transform: rotate(5deg);
}

.cr-6 {
    top: 40%;
    right: 25%;
    transform: rotate(-2deg);
}

.cr-7 {
    top: 55%;
    right: 5%;
    transform: rotate(3deg);
}

.cr-8 {
    top: 80%;
    right: 20%;
    transform: rotate(-4deg);
}

.cr-9 { top: 25%; right: 40%; transform: rotate(-3deg); }
.cr-10 { top: 60%; right: 40%; transform: rotate(4deg); }
.cr-11 { top: 88%; right: 40%; transform: rotate(2deg); }

/* Dim Layer overrides */
.layer-dim {
    z-index: 1;
}

.layer-dim .mini-stars {
    color: rgba(255, 215, 0, 0.1);
}

.layer-dim .small-review {
    opacity: 0.1;
    filter: blur(2px);
}

/* Reveal Layer overrides */
.layer-reveal {
    z-index: 2;
    --x: -500px;
    --y: -500px;
    background: radial-gradient(circle 450px at var(--x) var(--y), rgba(0, 219, 219, 0.15) 0%, rgba(0, 219, 219, 0.05) 50%, transparent 100%);
    mask-image: radial-gradient(circle 450px at var(--x) var(--y), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 450px at var(--x) var(--y), black 0%, transparent 100%);
}

.layer-reveal .small-review {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.layer-reveal .mini-stars {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* -------------------------------------
   TRUSTED CLIENTS SECTION
   ------------------------------------- */
.trusted-clients {
    padding: 60px 0 80px 0;
    background: #040508;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Subtle fade at edges to make it look like it's entering/leaving the screen */
.logo-marquee-container::before,
.logo-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #040508, transparent);
}

.logo-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #040508, transparent);
}

.logo-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollLogoMarquee 35s linear infinite;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.logo-marquee-track:hover {
    opacity: 1;
    /* Optional: animation-play-state: paused; if you want it to pause on hover, but infinite scroll is usually better uninterrupted */
}

.logo-marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
    padding-right: 80px;
    /* Space between the end of Content 1 and start of Content 2 */
}

@keyframes scrollLogoMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    font-size: 1.5rem;
    color: #fff;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
    cursor: default;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(100%);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.client-logo.logo-bold {
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.client-logo.logo-serif {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.6rem;
}

.client-logo.logo-tech {
    font-family: monospace;
    letter-spacing: 3px;
    font-size: 1.3rem;
}

.client-logo.logo-minimal {
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 2px;
}

.client-logo span {
    color: var(--accent-cyan);
}

/* -------------------------------------
   BRUTALIST FOOTER
   ------------------------------------- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.massive-footer-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-muted);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.method-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.method-link:hover {
    color: var(--accent-cyan);
}

.method-link svg {
    color: var(--accent-cyan);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-group.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}

.modern-form select {
    appearance: none;
    cursor: pointer;
}

.modern-form select option {
    background: #000;
    color: #fff;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    background: var(--accent-cyan);
    color: #000;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 0;
    border-radius: 8px;
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.submit-btn:hover {
    background: #fff;
}

.copyright-bar {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal CSS */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #0c0d12;
    border: 1px solid rgba(0, 219, 219, 0.3);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-modal.active .modal-content {
    transform: translateY(0);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.close-modal-btn {
    background: var(--text-primary);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.close-modal-btn:hover {
    background: var(--accent-cyan);
}

/* Custom Play Button inside O */
.o-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: inherit;
    transition: color 0.3s ease;
}

.o-wrapper:hover {
    color: var(--accent-cyan);
    animation: o-giggle 0.5s ease-in-out infinite alternate;
}

@keyframes o-giggle {
    0% { transform: rotate(-4deg) scale(1.02); }
    100% { transform: rotate(4deg) scale(1.08); }
}

.o-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.3em;
    height: 0.3em;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0c0d12;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    pointer-events: none; /* Let clicks pass to wrapper */
}

.o-play-btn svg {
    width: 45%;
    height: 45%;
    margin-left: 8%; /* visually center the triangle */
}

.o-wrapper:hover .o-play-btn {
    transform: translate(-50%, -50%) scale(1.4);
    background: #fff;
}

/* Video Modal & Camera Zoom Transition */
.zoom-camera-circle {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-container {
    width: 85%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    background: #000;
    transform: scale(0.8);
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    border: 1px solid rgba(0, 219, 219, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.video-modal.active .video-container {
    transform: scale(1);
    transition-delay: 0.1s;
}

.close-video-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.close-video-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

/* Founder Note Section */
.founder-note {
    text-align: center;
    width: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Floating Doodle Art */
.doodle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.doodle-1 { top: 15%; left: 8%; width: 120px; transform: rotate(-10deg); opacity: 0.6; }
.doodle-2 { bottom: 20%; left: 12%; width: 50px; }
.doodle-3 { top: 10%; right: 8%; width: 80px; transform: rotate(15deg); opacity: 0.7; }
.doodle-4 { bottom: 15%; right: 10%; width: 90px; }

@media (max-width: 1024px) {
    .doodle { display: none; }
}

.floating {
    animation: float-doodle 6s ease-in-out infinite;
}
.floating-delay {
    animation: float-doodle 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes float-doodle {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.founder-note h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    color: #fff;
}

.founder-note p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.founder-author {
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 40px;
}

/* -------------------------------------
   FAQ CAROUSEL SECTION
   ------------------------------------- */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.carousel-nav {
    display: flex;
    gap: 15px;
}

.carousel-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    transform: scale(1.1);
}

.faq-carousel {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

.faq-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Translucent Glowing Card */
.faq-card {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.05); /* Slight glass edge */
    border-radius: 12px;
    padding: 2px; /* Border thickness */
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: default;
}

/* Mouse-tracking Neon Glow */
.faq-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--mouse-x, 0px) var(--mouse-y, 0px), 
        rgba(0, 219, 219, 1) 0%, 
        transparent 500px
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.faq-card:hover::before {
    opacity: 1;
}

/* Inner Translucent Card Content */
.faq-card .card-content {
    background: rgba(12, 13, 18, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    height: 100%;
    padding: 35px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-card .card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.faq-card .card-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-card { flex: 0 0 300px; }
    .faq-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .carousel-nav { align-self: flex-end; }
    
    .hero { height: 100vh; min-height: 100vh; }
    .hero-title { font-size: clamp(2rem, 11vw, 3rem); line-height: 1; }
    .massive-footer-title { font-size: clamp(2.5rem, 12vw, 3.5rem); line-height: 1; margin-top: 10px; }
    .portfolio-title { font-size: 3rem; }
    .review-title { font-size: 2.5rem; }
    .service-row { padding: 40px 20px; }
    .service-list { margin: 0 -20px; }
    .container { padding: 0 20px; }
}

@media (max-width: 1024px) {
    .nav-pill {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .s-num {
        width: 100%;
    }

    .small-review {
        display: none;
    }

    /* Hide scattered reviews on small mobile to avoid cluster */
}

@media (hover: none) and (pointer: coarse) {
    .custom-cursor { display: none !important; }
    .cursor-dot { display: none !important; }
    body, * { cursor: auto !important; }
}