:root {
    --bg: #070707;
    --text: #EAEAEA;
    --accent: #B2FF05; /* Acid Green / Electric Chartreuse */
    --gray: #888888;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;

}

body.loading {
    overflow: hidden;
}

/* Cinematic Noise overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}


.cursor.grow {
    width: 80px;
    height: 80px;
    background-color: white;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--accent);
}

.preloader-bar {
    width: 0%;
    height: 1px;
    background: var(--accent);
    margin-top: 20px;
}

/* Floating Glass Pill Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    z-index: 1000;
    width: 90%;
    max-width: 800px;
}

.nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-cta {
    background: var(--text);
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
}

.hero-image-wrapper {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 50vw;
    height: 70vh;
    overflow: hidden;
    z-index: -1;
    opacity: 0.8;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg) 0%, transparent 50%, var(--bg) 100%);
}

.hero-large {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(6rem, 15vw, 15rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin-top: 10vh;
}

.hero-large .char-wrapper {
    display: inline-block;
    overflow: hidden;
}

.hero-large .offset {
    margin-left: 10vw;
    color: var(--accent); /* Changed from transparent to solid accent color */
    opacity: 0.8; /* Added slight opacity for a more sophisticated look */
}

.hero-bottom {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.scroll-indicator {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background: var(--text);
}

.hero-desc {
    max-width: 350px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Stats Section */
.stats-section {
    padding: 5rem 3rem 10rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
    color: var(--accent);
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--text);
    margin-left: 5px;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

/* Editorial Section */
.editorial-section {
    padding: 15rem 3rem;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.left-col {
    width: 30%;
}

.sub-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--accent);
    line-height: 1.1;
}

.right-col {
    width: 60%;
}

.large-body {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.4;
    margin-bottom: 5rem;
}

.img-reveal-wrapper {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

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

/* Horizontal Scroll */
.horizontal-scroll {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: #000;
}

.massive-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 25vw;
    color: rgba(255,255,255,0.02);
    z-index: 0;
    white-space: nowrap;
}

.horizontal-container {
    display: flex;
    gap: 5rem;
    padding: 0 50vw 0 3rem; 
    width: max-content;
    position: relative;
    z-index: 1;
}

.horizontal-item {
    width: 600px;
    flex-shrink: 0;
}

.horizontal-item img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.horizontal-item:hover img {
    filter: grayscale(0%);
}

.item-info {
    margin-top: 2rem;
}

.item-info h3 {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    padding: 15rem 3rem;
    background: var(--bg);
    position: relative;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 8rem;
    color: var(--text);
}

.process-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.process-row {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
}

.process-num {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
    color: transparent;
    -webkit-text-stroke: 1px var(--gray);
    line-height: 0.8;
    width: 20%;
}

.process-text {
    width: 80%;
}

.process-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text);
}

.process-text p {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    line-height: 1.6;
    color: var(--gray);
}

/* Footer CTA */
.footer-cta {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: #000;
}

.cta-massive {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 10vw, 15rem);
    line-height: 0.9;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.cta-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    transition: all 0.4s;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: var(--accent);
    color: #000;
}

.footer-bottom {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 2px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .split-layout { flex-direction: column; }
    .left-col, .right-col { width: 100%; }
    .hero-image-wrapper { width: 80vw; right: 0; opacity: 0.5; }
    .process-row { flex-direction: column; gap: 2rem; }
    .process-num, .process-text { width: 100%; }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
    }
    .nav-logo { align-self: flex-start; }
    .nav-cta { position: absolute; top: 1rem; right: 1rem; padding: 0.5rem 1rem; font-size: 0.7rem; }
    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 1.5rem;
        justify-content: flex-start;
    }
    
    .hero { padding: 0 1.5rem; }
    .hero-large { font-size: 4rem; }
    .hero-large .offset { margin-left: 0; }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; left: 1.5rem; right: 1.5rem; bottom: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .cursor { display: none; }
    body { cursor: auto; }
    
    .horizontal-scroll {
        padding: 5rem 0;
    }
    .horizontal-container {
        flex-direction: column;
        padding: 0 1.5rem;
        width: 100%;
        gap: 3rem;
    }
    .horizontal-item {
        width: 100%;
    }
    .horizontal-item img {
        height: 300px;
        filter: grayscale(0%);
    }
    
    .testimonials-section {
        padding: 5rem 1.5rem;
    }
    
    .cta-massive {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    .footer-cta {
        padding: 5rem 1.5rem;
        height: auto;
        min-height: 70vh;
    }
}

/* --- SERVICES PAGE STYLES --- */

.services-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.journey-pin-wrap {
    display: flex;
    height: 100vh; /* This will be pinned */
    padding: 0 3rem;
}

.journey-left {
    width: 40%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.journey-text-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.journey-text-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.journey-text-block.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.journey-text-block h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.journey-text-block p {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    color: var(--text);
    line-height: 1.6;
    max-width: 80%;
}

.journey-right {
    width: 60%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.journey-image-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.journey-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.journey-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

@media (max-width: 1024px) {
    .journey-pin-wrap { flex-direction: column; height: auto; }
    .journey-left, .journey-right { width: 100%; height: auto; }
    .journey-left { height: 50vh; }
    .journey-text-block p { max-width: 100%; }
}
/* --- GLOBAL FOOTER STYLES --- */

.main-footer {
    padding: 10rem 3rem 5rem 3rem;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


main {
    flex: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand .footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-info .info-highlight {
    color: var(--text);
    font-weight: 600;
}

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

.footer-bottom-bar p {
    color: var(--gray);
    font-size: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
}

.legal-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- CONTACT PAGE STYLES --- */

.contact-hero {
    min-height: 80vh;
    padding-top: 15vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    padding: 0 3rem 10rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.6rem;
    color: var(--accent);
}

.submit-btn {
    align-self: flex-start;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

/* --- PRICING PAGE STYLES --- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 3rem 15rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.6);
}

.pricing-card .tier-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 2rem;
    display: block;
}

.pricing-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-card .price {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--text);
    margin-bottom: 3rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 2px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 4rem;
}

.pricing-card ul li {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.pricing-card .card-cta {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--text);
    background: transparent;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.pricing-card:hover .card-cta {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}
/* --- CHECKOUT MODAL --- */

.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.checkout-content {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 4rem;
    border-radius: 30px;
    position: relative;
    animation: modalIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(50px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.close-modal:hover {
    opacity: 1;
}

.checkout-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.checkout-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

.payment-selection {
    margin-top: 3rem;
}

.payment-selection h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.payment-option {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.payment-option input {
    position: absolute;
    opacity: 0;
}

.payment-option.active {
    border-color: var(--accent);
    background: rgba(178, 255, 5, 0.05);
}

.payment-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

.payment-option.disabled::after {
    content: 'COMING SOON';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.method-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.method-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- LEGAL PAGE STYLES --- */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: var(--text);
    line-height: 1.7;
}
.legal-page h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
}
.legal-page h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-page p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.legal-page ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}


/* --- TRUST BADGES --- */
.trust-badges {
    background: var(--accent);
    color: #000;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}
.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}
.marquee-content span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    padding: 0 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: 10rem 3rem;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}
.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.testimonial-card .quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}
.testimonial-card .author {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
