@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #ff751f;
    --primary-rgb: 255, 117, 31;
    --bg: #000000;
    --text: #ffffff;
    --text-muted: #a1a1a1;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --ease-apple: cubic-bezier(0.65, 0, 0.35, 1);
}

/* SCROLL PROGRESS BAR */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: white;
    z-index: 10001;
    pointer-events: none;
}

/* CUSTOM SCROLLBAR - Minimalist Chrome/Safari/Edge */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { 
    background: var(--primary); 
    border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html.lenis {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--primary); /* As per user request: orange background */
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* NOISE TEXTURE FOR PREMIUM FEEL */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0,0,0,0.2), transparent 50%);
    pointer-events: none;
}

/* CUSTOM CURSOR */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s var(--ease-apple);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(255, 117, 31, 0.4);
    border-bottom: 1px solid var(--glass-border);
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img { height: 45px; }

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav__link:hover { opacity: 1; }

.btn-outline {
    border: 1px solid white;
    padding: 10px 24px;
    border-radius: 100px;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    z-index: 2;
}

.hero__tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.7);
}

.hero__title {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 40px;
}

.hero__title .line {
    display: block;
    overflow: hidden;
}

.hero__title .word { display: inline-block; }

.hero__title .highlight { 
    background: linear-gradient(90deg, #ffffff, #ffccaa, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
    to { background-position: 200% center; }
}

.hero__desc {
    max-width: 550px;
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s var(--ease-apple), box-shadow 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-secondary {
    padding: 18px 40px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* BENTO GRID */
.section { padding: 140px 0; position: relative; z-index: 2; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: -0.04em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bento-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s var(--ease-apple);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}


.bento-content h3 { font-size: 1.8rem; margin-bottom: 12px; font-weight: 700; }
.bento-content p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* STATEMENT */
.statement__text {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.h-orange { color: #000; }

/* WORK FLOW STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step__num {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
    display: block;
    margin-bottom: -10px;
}

.step h4 { font-size: 1.5rem; margin-bottom: 16px; }
.step p { color: rgba(255,255,255,0.8); }

/* CONTACT CARD */
.contact__card {
    background: #000;
    border-radius: 48px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact__info h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; }
.contact__info p { font-size: 1.2rem; opacity: 0.7; margin-bottom: 40px; }

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
}

.form { display: grid; gap: 20px; }

.form input, .form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 16px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    z-index: 9999;
    width: 0%;
}

/* FOOTER */
.footer { padding: 60px 0; border-top: 1px solid var(--glass-border); position: relative; z-index: 2; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; opacity: 0.5; font-size: 0.9rem; }
.footer__socials { display: flex; gap: 30px; }
.footer__socials a { color: white; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .contact__card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .hero__title { font-size: 3.5rem; }
    .nav { display: none; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-item--large { grid-column: span 1; }
    .steps { grid-template-columns: 1fr; gap: 40px; }
}

/* ANIMATION UTILS */
.fade-up { opacity: 0; transform: translateY(30px); }
.reveal-text { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-plus {
    font-size: 3rem;
    color: white;
    font-weight: 900;
}

.stat-item p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-top: 10px;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--text);
    margin-bottom: 20px;
    opacity: 0.8;
}

.bento-item:hover .service-icon {
    transform: scale(1.1);
    color: white;
    opacity: 1;
    transition: all 0.3s ease;
}
