:root {
    --clr-bg: #000000;
    --clr-text: #ffffff;
    --clr-btn-primary-bg: #ffffff;
    --clr-btn-primary-txt: #000000;
    --clr-btn-sec-bg: #252525;
    --clr-border: #505050;
    --clr-accent: #116dff;
    --clr-light-bg: #f0f0f0;
    --clr-light-border: #d0d0d0;
    --clr-muted: #aaaaaa;
    --font-main: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --h-header-desktop: 120px;
    --h-header-mobile: 100px;
    --h-feature-section: 750px;
    --max-w-container: 1600px;
}
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    min-width: 320px;
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 20px;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}
main {
    flex: 1;
    background-color: var(--clr-bg);
}
img, picture, video {
    max-width: 100%;
    display: block;
}
.inline-link {
    color: var(--clr-accent);
    text-decoration: underline;
}
.inline-link:hover {
    color: var(--clr-accent);
    text-decoration: underline;
}
@keyframes pan-horizontal {
    0%, 100% { object-position: 0% 50%; }
    50% { object-position: 100% 50%; }
}
.mobile-only { display: none; }
.desktop-only { display: block; }
.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-height: 40px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    flex: 1;
    text-align: center;
    cursor: pointer;
    font-family: inherit;
}
.btn-primary {
    background-color: var(--clr-btn-primary-bg);
    color: var(--clr-btn-primary-txt);
    border-radius: 5px;
    border: 1px solid var(--clr-btn-primary-bg);
}
.btn-primary:hover {
    background-color: #e0e0e0;
}
.btn-secondary {
    background-color: var(--clr-btn-sec-bg);
    color: var(--clr-text);
    border-radius: 5px;
    border: 1px solid var(--clr-border);
}
.btn-secondary:hover {
    background-color: #353535;
}
.feature-section {
    position: relative;
    width: 100%;
    height: var(--h-feature-section);
    border-top: 1px solid var(--clr-text);
    background-color: var(--clr-bg);
    overflow: hidden;
    contain: layout paint;
}
.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.feature-bg img, .feature-bg picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.overlay-left {
    background: linear-gradient(to bottom right, #000 0%, transparent 50%, #000 100%);
}
.overlay-right {
    background: linear-gradient(to bottom left, #000 0%, transparent 50%, #000 100%);
}
.feature-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-w-container);
    height: 100%;
    margin: 0 auto;
    padding: 80px 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    height: 100%;
}
.feature-col {
    display: flex;
    flex-direction: column;
}
.feature-col h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}
.feature-col p {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}
.desktop-only-col { display: block; }
.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 5px;
    contain: layout paint;
}
.gallery-track {
    display: flex;
    gap: 20px;
    height: 100%;
    will-change: transform;
}
.gallery-card {
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    width: calc((100% - 40px) / 3);
    overflow: hidden;
    border-radius: 5px;
    height: 100%;
    transform: translateZ(0);
}
.gallery-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.gallery-card-link:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    pointer-events: none;
}
.card-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: var(--clr-text);
    width: 100%;
    text-align: center;
    margin-bottom: -10px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.card-desc {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-text);
    width: 100%;
    text-align: center;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 40px;
    background: var(--clr-btn-primary-bg);
    color: var(--clr-btn-primary-txt);
    font-size: 14px;
    line-height: 20px;
    border-radius: 5px;
    transition: background 0.2s ease;
    pointer-events: auto;
}
.gallery-card-link:hover .card-btn {
    background: #f0f0f0;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
    padding: 0;
}
.gallery-nav:hover {
    background: var(--clr-text);
}
.gallery-nav svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--clr-btn-primary-txt);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }
.gallery-nav.hidden { display: none; }
.faq-section {
    width: 100%;
    background-color: var(--clr-light-bg);
    border-top: 1px solid #d8d8d8;
    contain: layout paint;
}
.faq-container {
    width: 100%;
    max-width: var(--max-w-container);
    margin: 0 auto;
    padding: 70px 40px 35px 40px;
    display: flex;
    flex-direction: column;
}
.faq-header {
    margin-bottom: 35px;
    color: var(--clr-btn-primary-txt);
}
.faq-header h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}
.faq-header p {
    font-size: 14px;
    line-height: 20px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}
.faq-item {
    display: flex;
    background-color: var(--clr-text);
    border-radius: 5px;
    overflow: hidden;
}
.faq-number {
    background-color: var(--clr-btn-sec-bg);
    color: var(--clr-text);
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    flex-shrink: 0;
}
.faq-content {
    padding: 15px 20px;
    color: var(--clr-btn-primary-txt);
    flex: 1;
}
.faq-question {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
}
.faq-answer {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
.faq-disclaimer p {
    font-size: 12px;
    line-height: 18px;
    color: var(--clr-muted);
    text-align: justify;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
@media (max-width: 1050px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
    .desktop-only-col { display: none; }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-wrapper {
        height: 400px;
    }
}
@media (max-width: 999px) {
    }
@media (max-width: 750px) {
    .feature-container {
        padding: 40px 20px;
    }
    .feature-grid {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .empty-col { display: none; }
    .content-col { align-items: center; }
    .overlay-left, .overlay-right {
        background: linear-gradient(to bottom, transparent 0%, transparent 50%, #000 100%);
    }
    .pan-mobile-img {
        animation: pan-horizontal 25s ease-in-out infinite;
        transform: translateZ(0);
    }
    .gallery-wrapper {
        height: 350px;
    }
    .gallery-card {
        width: 100%;
    }
    .card-content {
        padding: 40px 20px;
    }
    .faq-container {
        padding: 30px 20px 35px 20px;
    }
    .faq-item {
        flex-direction: column;
    }
    .faq-number {
        width: 100%;
        height: 50px;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0;
        padding-left: 20px;
        font-size: 14px;
    }
    .faq-number::before {
        content: "Question ";
        margin-right: 5px;
        font-weight: normal;
    }
    .faq-content {
        padding: 20px;
    }
    .faq-disclaimer p {
        text-align: left;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
