/* ==========================================
   CARLOS GALEANO - V2 REDESIGN
   Dark + Warm Amber/Gold — Construction Premium
   ========================================== */

:root {
    --bg: #0c0c0e;
    --bg2: #111114;
    --bg3: #18181c;
    --bg4: #1f1f25;
    --accent: #d4a24e;
    --accent2: #e8b95a;
    --accent-soft: rgba(212,162,78,0.12);
    --accent-glow: rgba(212,162,78,0.25);
    --text: #f2f0eb;
    --text2: #a8a5a0;
    --text3: #6b6864;
    --border: rgba(255,255,255,0.06);
    --border2: rgba(255,255,255,0.1);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 100px;
    --ff: 'Space Grotesk', sans-serif;
    --ff-head: 'Outfit', sans-serif;
    --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { font-size:16px; scroll-padding-top:80px; }

body {
    font-family: var(--ff);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition: var(--transition); }
ul { list-style:none; }

::selection { background: var(--accent-soft); color: var(--accent2); }
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius:10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ---- LABELS & TITLES ---- */
.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}
.title {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.title em {
    font-style: normal;
    color: var(--accent);
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--ff);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: var(--bg);
}
.btn--primary:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border2);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn--dark {
    background: var(--bg);
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn--dark:hover {
    background: var(--accent);
    color: var(--bg);
}
.btn--wa {
    background: #25D366;
    color: #fff;
}
.btn--wa:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,.3);
}
.btn--full { width:100%; justify-content:center; }

/* ---- CURSOR GLOW (desktop) ---- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
}
@media(hover:hover) {
    .cursor-glow { opacity: 1; }
}

/* ==========================================
   NAVIGATION
   ========================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}
#header.scrolled {
    padding: 10px 0;
    background: rgba(12,12,14,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}
.nav__logo-mark {
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1rem;
}
.nav__logo-text span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}
.nav__logo-text small {
    font-size: 0.65rem;
    color: var(--text3);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav__link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text2);
    border-radius: var(--radius-full);
}
.nav__link:hover { color: var(--text); }
.nav__link--cta {
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    padding: 10px 22px;
}
.nav__link--cta:hover {
    background: var(--accent2);
    color: var(--bg);
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}
.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 40px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__video, .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,12,14,.75) 0%, rgba(12,12,14,.92) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.hero__top { margin-bottom: 24px; }
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--accent-soft);
    border: 1px solid rgba(212,162,78,0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
}
.hero__tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.5; transform:scale(1.3); }
}
.hero__title {
    font-family: var(--ff-head);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.hero__title-accent {
    color: var(--accent);
    position: relative;
}
.hero__title-accent::after {
    content:'';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent);
    opacity: 0.2;
    border-radius: 3px;
}
.hero__desc {
    font-size: 1.1rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero__metrics {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.hero__metric {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    border-right: 1px solid var(--border);
}
.hero__metric:last-child { border-right: none; }
.hero__metric strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero__metric span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}
.hero__metric small {
    display: block;
    font-size: 0.75rem;
    color: var(--text3);
    margin-top: 4px;
}

/* ==========================================
   TRUST RIBBON (infinite scroll)
   ========================================== */
.ribbon {
    padding: 18px 0;
    background: var(--accent);
    overflow: hidden;
}
.ribbon__track {
    display: flex;
    gap: 30px;
    animation: ribbonScroll 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}
@keyframes ribbonScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ribbon__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ribbon__sep {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
    padding: 120px 0;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__visual { position: relative; }
.about__img-stack { position: relative; }
.about__img--main {
    border-radius: var(--radius);
    height: 520px;
    object-fit: cover;
    width: 100%;
}
.about__img--float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 4px solid var(--bg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about__badge {
    position: absolute;
    top: 24px;
    left: -16px;
    background: var(--accent);
    color: var(--bg);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 10px 30px var(--accent-glow);
}
.about__badge strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}
.about__badge span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about__content p {
    color: var(--text2);
    margin-bottom: 12px;
}
.about__checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.about__check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
}
.about__check i {
    color: var(--accent);
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    padding: 120px 0;
    background: var(--bg2);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.srv {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.srv::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.srv:hover {
    border-color: rgba(212,162,78,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.srv:hover::after { transform: scaleX(1); }

.srv__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--ff-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}
.srv__icon {
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition);
}
.srv:hover .srv__icon {
    background: var(--accent);
    color: var(--bg);
}
.srv h3 {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.srv p {
    font-size: 0.88rem;
    color: var(--text2);
    margin-bottom: 16px;
}
.srv__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.srv__tags li {
    padding: 4px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text3);
}

/* ==========================================
   PORTFOLIO
   ========================================== */
.portfolio {
    padding: 120px 0;
}
.portfolio__filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.portfolio__filter {
    padding: 8px 22px;
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: var(--radius-full);
    color: var(--text2);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--ff);
    transition: var(--transition);
}
.portfolio__filter.active, .portfolio__filter:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}
.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}
.portfolio__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.portfolio__item--tall { grid-row: span 2; }
.portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.portfolio__item:hover img { transform: scale(1.08); }
.portfolio__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}
.portfolio__item:hover .portfolio__info {
    transform: translateY(0);
    opacity: 1;
}
.portfolio__info span {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent);
    color: var(--bg);
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.portfolio__info h4 { font-size: 1rem; margin-bottom: 2px; }
.portfolio__info p { font-size: 0.8rem; color: var(--text2); }

.portfolio__item.hidden { display: none; }

/* ==========================================
   TEAM SECTION
   ========================================== */
.team {
    padding: 100px 0;
    background: var(--bg2);
}
.team__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.team__photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.team__photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(12,12,14,0.6) 100%);
    pointer-events: none;
}
.team__content p {
    color: var(--text2);
    margin-bottom: 24px;
}
.team__stats {
    display: flex;
    gap: 24px;
}
.team__stat {
    text-align: center;
    padding: 16px 20px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex: 1;
}
.team__stat strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.team__stat span {
    font-size: 0.75rem;
    color: var(--text3);
}
@media (max-width: 768px) {
    .team__grid { grid-template-columns: 1fr; gap: 30px; }
    .team__photo img { height: 300px; }
    .team__stats { gap: 12px; }
}

/* ==========================================
   PROCESS
   ========================================== */
.process {
    padding: 120px 0;
    background: var(--bg2);
}
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.step {
    position: relative;
    text-align: center;
    padding: 40px 20px;
}
.step__line {
    position: absolute;
    top: 62px;
    left: 60%;
    width: calc(100% - 20%);
    height: 1px;
    background: var(--border2);
}
.step:last-child .step__line { display: none; }

.step__num {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--accent-soft);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.step:hover .step__num {
    background: var(--accent);
    color: var(--bg);
}
.step__content i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 12px;
}
.step__content h3 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step__content p {
    font-size: 0.85rem;
    color: var(--text2);
}

/* ==========================================
   WHY US
   ========================================== */
.why {
    padding: 120px 0;
}
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.why__left p {
    color: var(--text2);
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.why__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.why__card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.why__card:hover {
    border-color: rgba(212,162,78,0.2);
    transform: translateY(-3px);
}
.why__card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}
.why__card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.why__card p {
    font-size: 0.8rem;
    color: var(--text3);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 120px 0;
    background: var(--bg2);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testi {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.testi:hover {
    border-color: rgba(212,162,78,0.15);
    transform: translateY(-4px);
}
.testi__stars {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}
.testi p {
    font-size: 0.92rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi__avatar {
    width: 42px;
    height: 42px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
}
.testi__author strong { display: block; font-size: 0.9rem; }
.testi__author small { font-size: 0.75rem; color: var(--text3); }

/* ==========================================
   BIG CTA
   ========================================== */
.bigcta {
    padding: 60px 0;
}
.bigcta__inner {
    background: var(--accent);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bigcta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.bigcta__inner h2 {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--bg);
    margin-bottom: 12px;
    position: relative;
}
.bigcta__inner p {
    color: rgba(0,0,0,0.6);
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
}
.bigcta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: 120px 0;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.contact__info p {
    color: var(--text2);
    margin-bottom: 28px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.contact__detail:hover {
    border-color: rgba(212,162,78,0.2);
}
.contact__detail i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}
.contact__detail strong { display: block; font-size: 0.82rem; }
.contact__detail span { font-size: 0.82rem; color: var(--text3); }

/* Contact Form */
.contact__form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form__field {
    position: relative;
    margin-bottom: 18px;
}
.form__field input,
.form__field select,
.form__field textarea {
    width: 100%;
    padding: 16px 14px 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--ff);
    outline: none;
    transition: var(--transition);
}
.form__field label {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 0.82rem;
    color: var(--text3);
    pointer-events: none;
    transition: var(--transition);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.form__field input:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field select:focus + label,
.form__field select:valid + label,
.form__field textarea:focus + label,
.form__field textarea:not(:placeholder-shown) + label {
    top: 3px;
    font-size: 0.65rem;
    color: var(--accent);
}
.form__field select {
    appearance: none;
    cursor: pointer;
    padding-top: 14px;
}
.form__field select option { background: var(--bg2); }
.form__note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text3);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form__note i { color: var(--accent); }

.form-success { text-align:center; padding:40px; }
.form-success i { font-size:3rem; color:#25D366; margin-bottom:16px; }
.form-success h3 { margin-bottom:8px; }
.form-success p { color: var(--text2); }

/* ==========================================
   MAP
   ========================================== */
.map {
    height: 300px;
    overflow: hidden;
}
.map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) brightness(0.4) contrast(1.2);
    transition: filter 0.5s;
}
.map:hover iframe {
    filter: grayscale(0.5) brightness(0.6);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg2);
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer__brand p {
    color: var(--text3);
    font-size: 0.85rem;
    margin-top: 16px;
}
.footer__col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}
.footer__col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text3);
    padding: 4px 0;
}
.footer__col a:hover { color: var(--accent); }
.footer__col a i { color: var(--accent); width: 16px; }
.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}
.footer__bottom p { font-size: 0.75rem; color: var(--text3); }

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grids */
.services__grid .srv:nth-child(2) { transition-delay: .08s; }
.services__grid .srv:nth-child(3) { transition-delay: .16s; }
.services__grid .srv:nth-child(4) { transition-delay: .24s; }
.services__grid .srv:nth-child(5) { transition-delay: .32s; }
.services__grid .srv:nth-child(6) { transition-delay: .40s; }
.process__grid .step:nth-child(2) { transition-delay: .1s; }
.process__grid .step:nth-child(3) { transition-delay: .2s; }
.process__grid .step:nth-child(4) { transition-delay: .3s; }
.why__right .why__card:nth-child(2) { transition-delay: .06s; }
.why__right .why__card:nth-child(3) { transition-delay: .12s; }
.why__right .why__card:nth-child(4) { transition-delay: .18s; }
.why__right .why__card:nth-child(5) { transition-delay: .24s; }
.why__right .why__card:nth-child(6) { transition-delay: .30s; }
.testimonials__grid .testi:nth-child(2) { transition-delay: .1s; }
.testimonials__grid .testi:nth-child(3) { transition-delay: .2s; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__visual { max-width: 480px; margin: 0 auto; }
    .why__grid { grid-template-columns: 1fr; gap: 50px; }
    .portfolio__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .step__line { display: none; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__grid { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid .testi:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        inset: 0;
        background: rgba(12,12,14,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav__menu.active { opacity: 1; visibility: visible; }
    .nav__link { font-size: 1.2rem; padding: 12px 24px; }
    .nav__burger { display: flex; }

    .hero__title { font-size: 2.6rem; letter-spacing: -1px; }
    .hero__metrics { flex-wrap: wrap; }
    .hero__metric { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
    .hero__metric:nth-child(odd) { border-right: 1px solid var(--border); }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; justify-content: center; }

    .services__grid,
    .testimonials__grid,
    .why__right { grid-template-columns: 1fr; }
    .testimonials__grid .testi:nth-child(3) { grid-column: auto; }

    .portfolio__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }

    .process__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .form__row { grid-template-columns: 1fr; }
    .contact__form { padding: 24px; }
    .bigcta__inner { padding: 40px 24px; }
    .bigcta__actions { flex-direction: column; }
    .bigcta__actions .btn { width: 100%; justify-content: center; }

    .footer__grid { grid-template-columns: 1fr; gap: 30px; }

    .about, .services, .portfolio, .process, .why, .testimonials, .contact {
        padding: 80px 0;
    }

    .showreel__wrap { aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.2rem; }
    .title { font-size: 1.6rem; }
    .portfolio__grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .portfolio__item--tall { grid-row: auto; }
    .about__checks { grid-template-columns: 1fr; }
}
