body {
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #FFFFFF;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

body:hover .cursor-outline.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    backdrop-filter: blur(2px);
}

/* Scroll Thread */
.thread-line {
    position: fixed;
    left: 50px;
    top: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #FFFFFF, transparent);
    height: 0%;
    z-index: 40;
    transition: height 0.1s linear;
}

@media (max-width: 768px) {
    .thread-line { left: 20px; }
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-highlight:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Services Grid Cards */
.service-grid-card {
    width: 100%;
    background-color: #050505;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 768px) {
    .service-grid-card { width: calc(50% - 12px); }
}

@media (min-width: 1024px) {
    .service-grid-card { width: calc(33.333% - 22px); }
}

.service-grid-card:hover {
    border-color: #FFFFFF;
    transform: translateY(-8px);
    background-color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(255,255,255,0.05);
}

.service-grid-card .card-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-family: 'Syne', sans-serif;
    font-size: 8rem;
    line-height: 1;
    color: #111111;
    z-index: 0;
    transition: color 0.5s ease;
}

.service-grid-card:hover .card-number {
    color: #1a1a1a;
}

/* FAQ Accordion */
.zen-accordion {
    border-bottom: 1px solid #222222;
    transition: background-color 0.4s ease, border-color 0.4s ease;
    background-color: transparent;
}

.zen-accordion:hover:not(.active) {
    background-color: #0a0a0a;
}

.zen-accordion.active {
    background-color: #050505;
    border-color: #FFFFFF;
}

.zen-accordion-title {
    transition: all 0.4s ease;
}

.zen-accordion:hover .zen-accordion-title,
.zen-accordion.active .zen-accordion-title {
    color: #FFFFFF;
    padding-left: 15px;
}

.zen-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease, margin-top 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.zen-accordion.active .zen-accordion-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
}

.zen-accordion.active .zen-accordion-icon {
    transform: rotate(45deg);
    color: #FFFFFF;
}

/* Mobile Fixes */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none !important; }
    body { cursor: auto !important; }
}