:root {
    --bg-main: #000000;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    

    --glass-border: rgba(255, 255, 255, 0.03); 
    --glass-highlight: rgba(255, 255, 255, 0.06); 
    --glass-glow: rgba(255, 255, 255, 0.01);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
::-webkit-scrollbar {
    display: none;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px); 
    z-index: -1;
    opacity: 0.95; 
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 { width: 50vw; height: 50vw; background: rgba(255, 255, 255, 0.20); top: -10%; left: -10%; }
.orb-2 { width: 40vw; height: 40vw; background: rgba(255, 255, 255, 0.25); bottom: -10%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: rgba(255, 255, 255, 0.15); top: 40%; left: 40%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.1); }
    100% { transform: translate(-5%, 10%) scale(0.9); }
}

.glass-panel, .glass-card, .glass-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px var(--glass-glow), inset 0 1px 0 var(--glass-highlight);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links { list-style: none; display: flex; gap: 3rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.3s ease, text-shadow 0.3s ease; }
.nav-links a:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }

.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; width: 100%; }
.hero-content { z-index: 2; max-width: 100%; }
.giant-title {
    font-size: clamp(4rem, 18vw, 20rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle { font-size: clamp(0.9rem, 2vw, 1.2rem); color: var(--text-muted); margin-bottom: 3rem; font-weight: 400; letter-spacing: 2px; }


.btn { display: inline-block; padding: 1.2rem 3rem; color: var(--text-main); text-decoration: none; border-radius: 100px; font-weight: 600; font-size: 0.95rem; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.btn:hover { background: rgba(255,255,255,0.05); transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.15); }

.section { padding: 6rem 5%; position: relative; z-index: 2; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 3rem; font-weight: 700; margin-bottom: 3rem; letter-spacing: -1px; text-align: center; }

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0 3rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    cursor: grab;
}

.marquee-wrapper.grabbing {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-group {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

.review-card {
    width: 400px; 
    padding: 2rem;
    border-radius: 24px;
    white-space: normal;
    flex-shrink: 0;
    transition: border-color 0.4s, box-shadow 0.4s;
    user-select: none;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    pointer-events: none;
}

.review-header img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.review-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.review-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    pointer-events: none;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.about-text, .about-image { border-radius: 32px; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s, box-shadow 0.4s; }
.about-text { padding: 3rem; }
.about-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-text strong { color: var(--text-main); }
.about-image { padding: 0; overflow: hidden; min-height: 300px; display: flex; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-text:hover, .about-image:hover { 
    transform: translateY(-10px); 
    border-color: rgba(255, 255, 255, 0.15); 
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1); 
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card { padding: 3rem 2.5rem; border-radius: 32px; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s, box-shadow 0.4s; }

.service-card:hover { 
    transform: translateY(-10px); 
    border-color: rgba(255, 255, 255, 0.15); 
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1); 
}

.service-card h3 { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 1.1rem; }

.contact-card { border-radius: 40px; padding: 6rem 2rem; text-align: center; }
.email-text { font-size: clamp(1.8rem, 5vw, 4.5rem); font-weight: 700; margin-bottom: 3rem; word-break: break-all; background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.4) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

footer { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 0.9rem; z-index: 2; position: relative; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .section { padding: 5rem 5%; }
    .contact-card { padding: 4rem 1.5rem; border-radius: 32px; }
    .about-text { padding: 2rem; }
    .about-image { min-height: 250px; }
    .giant-title { font-size: clamp(3rem, 15vw, 6rem); }
    .review-card { width: 300px; padding: 1.5rem; }
/*░░░░░░░░░░░▄▄▀▀▀▀▀▀▀▀▄▄
░░░░░░░░▄▀▀░░░░░░░░░░░░▀▄▄
░░░░░░▄▀░░░░░░░░░░░░░░░░░░▀▄
░░░░░▌░░░░░░░░░░░░░▀▄░░░░░░░▀▀▄
░░░░▌░░░░░░░░░░░░░░░░▀▌░░░░░░░░▌
░░░▐░░░░░░░░░░░░▒░░░░░▌░░░░░░░░▐
░░░▌▐░░░░▐░░░░▐▒▒░░░░░▌░░░░░░░░░▌
░░▐░▌░░░░▌░░▐░▌▒▒▒░░░▐░░░░░▒░▌▐░▐
░░▐░▌▒░░░▌▄▄▀▀▌▌▒▒░▒░▐▀▌▀▌▄▒░▐▒▌░▌
░░░▌▌░▒░░▐▀▄▌▌▐▐▒▒▒▒▐▐▐▒▐▒▌▌░▐▒▌▄▐
░▄▀▄▐▒▒▒░▌▌▄▀▄▐░▌▌▒▐░▌▄▀▄░▐▒░▐▒▌░▀▄
▀▄▀▒▒▌▒▒▄▀░▌█▐░░▐▐▀░░░▌█▐░▀▄▐▒▌▌░░░▀
░▀▀▄▄▐▒▀▄▀░▀▄▀░░░░░░░░▀▄▀▄▀▒▌░▐
░░░░▀▐▀▄▒▀▄░░░░░░░░▐░░░░░░▀▌▐
░░░░░░▌▒▌▐▒▀░░░░░░░░░░░░░░▐▒▐
░░░░░░▐░▐▒▌░░░░▄▄▀▀▀▀▄░░░░▌▒▐
░░░░░░░▌▐▒▐▄░░░▐▒▒▒▒▒▌░░▄▀▒░▐
░░░░░░▐░░▌▐▐▀▄░░▀▄▄▄▀░▄▀▐▒░░▐
░░░░░░▌▌░▌▐░▌▒▀▄▄░░░░▄▌▐░▌▒░▐
░░░░░▐▒▐░▐▐░▌▒▒▒▒▀▀▄▀▌▐░░▌▒░▌
░░░░░▌▒▒▌▐▒▌▒▒▒▒▒▒▒▒▐▀▄▌░▐▒▒▌*/