*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #1a1a1a;
    --white: #ffffff;
    --grey: #888888;
    --grey2: #555555;
    --grey3: #333333;
    --border: #1e1e1e;
    --red: #9b1111;
    --red2: #b01212;
}

html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 60px;
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white);
    text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    font-size: 1rem; font-weight: 400;
    color: var(--grey); text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed; inset: 0; z-index: 99;
    background: var(--bg);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 36px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { transform: translateX(0); display: flex; }
.mobile-menu a {
    font-size: 2rem; font-weight: 800; letter-spacing: -0.02em;
    color: var(--white); text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--grey); }

.panel-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.75);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
}
.panel-overlay.open { opacity: 1; pointer-events: all; }
.about-panel {
    position: fixed; top: 0; right: -700px; bottom: 0;
    width: 640px; max-width: 92vw;
    background: #141414;
    z-index: 201;
    padding: 56px 52px 52px;
    overflow-y: auto;
    transition: right 0.48s cubic-bezier(0.16,1,0.3,1);
}
.about-panel.open { right: 0; }
.panel-close {
    position: absolute; top: 22px; right: 26px;
    background: none; border: none; cursor: pointer;
    color: var(--grey); font-size: 1.5rem; line-height: 1;
    transition: color 0.2s; display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
}
.panel-close:hover { color: var(--white); }
.panel-h { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-bottom: 32px; }
.panel-p { font-size: 1rem; line-height: 1.82; color: #c8c8c8; margin-bottom: 22px; }
.panel-p:last-child { margin-bottom: 0; }

section { padding: 80px 40px; }

.sec-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 900; letter-spacing: -0.035em;
    color: var(--white); line-height: 1;
    margin-bottom: 28px; text-transform: uppercase;
}

#hero {
    min-height: 100vh;
    padding: 0 40px;
    display: flex; align-items: center;
    padding-top: 60px; gap: 0;
}
.hero-left {
    flex: 1;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.avail-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px 8px 13px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    margin-bottom: 48px;
    text-decoration: none; cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.avail-badge:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.gdot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #22c55e; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.32); }
}
.avail-badge span {
    font-size: 0.82rem; font-weight: 500; color: #d0d0d0; letter-spacing: 0.01em;
}
.hero-h {
    font-size: clamp(3.2rem, 6.5vw, 6.2rem);
    font-weight: 900; letter-spacing: -0.04em; line-height: 1.02;
    color: var(--white);
}
.hero-h .grey-line { color: var(--red2); }
.hero-right {
    flex-shrink: 0; padding-left: 60px;
    display: flex; align-items: center;
    padding-right: 70px;
}
.portrait-wrap {
    width: 360px; height: 360px; border-radius: 50%;
    overflow: hidden; background: #1a1a1a;
    border: 2px solid #252525;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: 0.7s ease;
}
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait-wrap:hover { transform: scale(1.05); }

#about {
    padding-bottom: 80px;
    border-top: 1px solid var(--border);
}
.about-link {
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: none; cursor: pointer; padding: 0;
    font-size: 0.97rem; font-weight: 400; font-family: 'Inter', sans-serif;
    color: var(--grey); transition: color 0.2s;
}
.about-link:hover { color: var(--white); }
.about-link .arr { font-size: 1.1rem; transition: transform 0.2s; line-height: 1; }
.about-link:hover .arr { transform: translateX(5px); }

#work { background: #0f0f0f; border-top: 1px solid var(--border); }
.sub-label {
    font-size: 1rem; font-weight: 600; color: var(--white);
    margin-bottom: 18px; letter-spacing: -0.01em;
}
.vid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 52px;
}
.vid-card {
    border-radius: 10px; overflow: hidden;
    background: #1c1c1c; border: 1px solid #232323;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.vid-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(0,0,0,0.65); }

.vid-iframe-wrap {
    position: relative;
    overflow: hidden;
    height: 630px;
}
.vid-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.vid-iframe-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vid-iframe-wrap.long-video { height: 420px; }
.vid-grid:has(.long-video) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}

.vid-info { padding: 14px 16px 16px; background: #1c1c1c; }
.vid-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 3px; letter-spacing: -0.01em; }
.vid-plat { font-size: 0.77rem; color: var(--grey); }

.tph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1c1c1c, #222);
}
.tph svg { opacity: 0.08; }

#brands { border-top: 1px solid var(--border); }
.brands-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.brand-card {
    border-radius: 10px; overflow: hidden;
    aspect-ratio: 4/3; position: relative;
    cursor: pointer; background: #1a1a1a;
    border: 1px solid #232323;
    text-decoration: none; display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.brand-card:hover { transform: scale(1.025); box-shadow: 0 14px 36px rgba(0,0,0,0.55); }
.brand-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.8); transition: transform 0.4s, filter 0.3s; }
.brand-card:hover img { transform: scale(1.06); filter: brightness(1); }
.brand-ov {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.18);
    font-size: 1.05rem; font-weight: 700;
    color: rgba(255,255,255,0.82); letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    transition: background 0.2s;
}
.brand-card:hover .brand-ov { background: rgba(0,0,0,0.3); }

#experience { background: #0f0f0f; border-top: 1px solid var(--border); }
.exp-body { max-width: 820px; }
.exp-body p { font-size: 1.05rem; line-height: 1.88; color: #bbb; margin-bottom: 26px; }
.exp-body p:last-child { margin-bottom: 0; }
.exp-body strong { color: var(--white); font-weight: 700; font-size: 1.07rem; }

#stats {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 40px 100px;
}
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; text-align: center;
}
.s-item { padding: 32px 20px; }
.s-num {
    font-size: clamp(3.8rem, 8vw, 7rem);
    font-weight: 900; letter-spacing: -0.05em;
    color: var(--red2); line-height: 1;
    display: block; margin-bottom: 14px;
}
.s-lbl { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }

#testimonials { border-top: 1px solid var(--border); padding-bottom: 0; }
.t-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.t-card {
    background: #161616; border: 1px solid #242424;
    border-radius: 10px; padding: 28px 28px 20px;
    display: flex; flex-direction: column;
    transition: border-color 0.25s, transform 0.3s;
}
.t-card:hover { border-color: #333; transform: translateY(-3px); }
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { color: #f59e0b; font-size: 1.1rem; }
.t-txt { font-size: 0.9rem; line-height: 1.75; color: #ccc; flex: 1; margin-bottom: 22px; }
.t-div { height: 1px; background: #252525; margin-bottom: 18px; }
.t-name { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }

#contact {
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border);
}
.contact-row {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding-bottom: 64px;
}
.cta-h { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-bottom: 8px; }
.cta-sub { font-size: 0.9rem; color: var(--grey); margin-bottom: 22px; }
.email-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 1rem; font-weight: 500; color: var(--white);
    text-decoration: none; transition: color 0.2s;
}
.email-link:hover { color: var(--grey); }
.socials { display: flex; align-items: center; gap: 20px; margin-top: 0; }
.soc-btn {
    width: 60px; height: 60px; border-radius: 50%;
    border: 1px solid #2e2e2e;
    display: flex; align-items: center; justify-content: center;
    margin-right: 40px;
    color: #3b783b; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.whatsapp_title { color: white; font-size: 25px; }
.soc-btn:hover { border-color: var(--white); color: var(--white); }
.foot-copy { border-top: 1px solid var(--border); padding-top: 28px; text-align: center; }
.foot-copy p { font-size: 0.8rem; color: #444; }

.fi { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
    .vid-grid { grid-template-columns: repeat(2, 1fr); }
    .vid-iframe-wrap { height: 400px; }
    .vid-iframe-wrap.long-video { height: 340px; }
    .vid-grid:has(.long-video) { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .t-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .portrait-wrap { width: 260px; height: 260px; }
    .hero-right { padding-left: 32px; padding-right: 20px; }
    .vid-iframe-wrap { height: 340px; }
    .vid-iframe-wrap.long-video { height: 260px; }
    .vid-grid:has(.long-video) { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 60px 20px; }
    #stats { padding: 60px 20px 80px; }
    #contact { padding: 60px 20px 40px; }

    #hero {
        padding: 80px 20px 40px;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 32px;
        min-height: auto;
        text-align: center;
    }
    .hero-left { width: 100%; }
    .avail-badge { margin-bottom: 28px; }
    .hero-right { padding-left: 0; padding-right: 0; align-self: center; }
    .portrait-wrap { width: 180px; height: 180px; }

    .vid-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .vid-iframe-wrap { height: 240px; }
    .vid-iframe-wrap.long-video { height: 200px; }
    .vid-grid:has(.long-video) { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .t-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }

    .contact-row { flex-direction: column; gap: 32px; }
    .socials { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
    .soc-btn { margin-right: 0; }
    .whatsapp_title { font-size: 18px; }

    .about-panel { padding: 40px 24px 40px; }
    .panel-h { font-size: 1.6rem; }
    .panel-p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .vid-grid { grid-template-columns: 1fr; }
    .vid-iframe-wrap { height: 500px; }
    .vid-iframe-wrap.long-video { height: 210px; }
    .vid-grid:has(.long-video) { grid-template-columns: 1fr; max-width: 100%; }

    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .s-num { font-size: 3rem; }
    .s-lbl { font-size: 0.9rem; }

    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .t-row { grid-template-columns: 1fr; }

    .hero-h { font-size: clamp(2.4rem, 9vw, 3.5rem); }
    .sec-title { font-size: clamp(2rem, 8vw, 3rem); }
    .portrait-wrap { width: 140px; height: 140px; }

    .cta-h { font-size: 1.5rem; }
    .socials { flex-direction: column; align-items: flex-start; }
    .whatsapp_title { font-size: 16px; }
}

@keyframes slideLoop {
    0%   { opacity: 0; transform: translateX(-60px); }
    20%  { opacity: 1; transform: translateX(0); }
    70%  { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(60px); }
}

.hero-left h1 {
    animation: slideLoop 4s ease infinite;
}