/* ============================================================
   LET BIENES RAÍCES — styles.css
   Dark Luxury Real Estate | Color: #0F3E75
   ============================================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B0F1A;
    color: #E4E4E7;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0F3E75;
    --primary-dark: #0a2d56;
    --primary-light: #1a5fa8;
    --primary-pale: #4A90D9;
    --primary-glow: rgba(15, 62, 117, 0.4);
    --text-1: #FFFFFF;
    --text-2: #E4E4E7;
    --text-3: #A1A1AA;
    --text-4: #71717A;
    --border-dim: rgba(15, 62, 117, 0.18);
    --border-vis: rgba(15, 62, 117, 0.38);
    --border-white: rgba(255, 255, 255, 0.07);
    --gold: #C9A84C;
    --success: #22c55e;
    --warning: #F59E0B;
    --shadow-blue: 0 4px 30px rgba(15, 62, 117, 0.35);
    --section-pad: 100px 0;
    --container: 1200px;
    --r-s: 8px;
    --r-m: 14px;
    --r-l: 20px;
    --r-xl: 28px;
    --bg-0: #080D16;
    --bg-1: #0B0F1A;
    --bg-2: #0F1525;
    --bg-3: #151C2E;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-1);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    color: var(--text-3);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s;
}

strong {
    color: var(--text-2);
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #4A90D9 0%, #8BBFE8 50%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8BBFE8;
    background: rgba(15, 62, 117, .15);
    border: 1px solid rgba(15, 62, 117, .3);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

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

.section-title {
    margin-bottom: 14px;
}

.section-subtitle,
.section-sub {
    font-size: 1.05rem;
    color: var(--text-3);
    line-height: 1.75;
}

/* ===== GLASS ===== */
.glass,
.glass-card {
    background: linear-gradient(135deg, var(--bg-3) 0%, rgba(15, 15, 18, .85) 100%);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-l);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .35s ease;
}

.glass:hover,
.glass-card:hover {
    border-color: var(--border-vis);
    box-shadow: var(--shadow-blue);
    transform: translateY(-3px);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: var(--r-m);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-blue);
    transition: all .3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(15, 62, 117, .55);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--text-2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: 13px 28px;
    border-radius: var(--r-m);
    border: 1px solid var(--border-white);
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: rgba(15, 62, 117, .5);
    color: #8BBFE8;
    background: rgba(15, 62, 117, .1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 34px !important;
    font-size: 1rem !important;
}

.btn-xl {
    padding: 18px 40px !important;
    font-size: 1.05rem !important;
    border-radius: 18px !important;
}

/* ===== KEYFRAMES ===== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(.93)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .5
    }

    50% {
        transform: translateY(8px);
        opacity: 1
    }
}

@keyframes dot-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: .6
    }
}

@keyframes float-wa {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(15, 62, 117, .4), 0 0 0 0 rgba(15, 62, 117, .2)
    }

    50% {
        box-shadow: 0 6px 36px rgba(15, 62, 117, .7), 0 0 0 8px rgba(15, 62, 117, 0)
    }
}

.animate-fade-up,
.anim-fade-up {
    opacity: 0;
    animation: fade-up .8s cubic-bezier(.16, 1, .3, 1) forwards;
}

.animate-scale,
.anim-scale {
    opacity: 0;
    animation: scale-in .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

.animate-fade-rotate {
    opacity: 0;
    animation: fade-up .9s cubic-bezier(.16, 1, .3, 1) .3s forwards;
}

.delay-1,
.d1 {
    animation-delay: .15s
}

.delay-2,
.d2 {
    animation-delay: .3s
}

.delay-3,
.d3 {
    animation-delay: .5s
}

.delay-4,
.d4 {
    animation-delay: .7s
}

.floating {
    animation: float 7s ease-in-out infinite;
}

.pulse-btn {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Scroll reveal */
.reveal,
.reveal-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.in,
.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all .35s ease;
}

.navbar.scrolled {
    background: rgba(11, 15, 26, .96);
    border-bottom: 1px solid var(--border-dim);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .6);
    padding: 13px 0;
}

.nav-inner,
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo box — white bg para que resalte el logo */
.logo-box,
.logo-pill {
    background: #fff;
    border-radius: 10px;
    padding: 5px 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .45);
    display: flex;
    align-items: center;
}

.logo-box img,
.logo-img {
    height: 88px;
    max-height: 88px;
    width: auto;
    max-width: 140px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a,
.nav-link {
    font-size: .99rem;
    font-weight: 500;
    color: var(--text-3);
    padding: 7px 14px;
    border-radius: 8px;
    transition: all .25s;
    display: block;
}

.nav-links a:hover,
.nav-link:hover,
.nav-link.active {
    color: var(--text-1);
    background: rgba(15, 62, 117, .15);
}

.nav-cta {
    font-size: .99rem !important;
    padding: 10px 20px !important;
}

.hamburger,
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span,
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1),
.mobile-nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2),
.mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3),
.mobile-nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, .97);
    gap: 24px;
    z-index: 999;
}

.mobile-nav-open .nav-link {
    font-size: 1.2rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--bg-0);
}

.hero-bg-img,
.hero-bg-glow-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/hero_visual.png');
    background-size: cover;
    background-position: center;
    opacity: .12;
    filter: saturate(.5) blur(2px);
}

.hero-bg-img::after,
.hero-bg-glow-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 13, 22, .98) 30%, rgba(8, 13, 22, .6) 70%, rgba(8, 13, 22, .3) 100%);
}

.hero-glow,
.hero-bg-glow {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(15, 62, 117, .13) 0%, transparent 68%);
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}

.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(15, 62, 117, .5);
    animation: float linear infinite;
}

.hero-grid,
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #8BBFE8;
    background: rgba(15, 62, 117, .18);
    border: 1px solid rgba(15, 62, 117, .35);
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.live-dot,
.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-sub,
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-3);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 510px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-3);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card-wrap,
.hero-sphere {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--r-xl);
    display: block;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .65), 0 0 40px rgba(15, 62, 117, .18);
}

.hero-card-glow,
.sphere-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(15, 62, 117, .15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.float-badge,
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(11, 15, 26, .92);
    border: 1px solid var(--border-vis);
    border-radius: var(--r-m);
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    z-index: 2;
    white-space: nowrap;
}

.fb-right,
.card-top-right {
    top: 8%;
    right: -50px;
    animation: float 5.5s ease-in-out infinite 1s;
}

.fb-left,
.card-bottom-left {
    bottom: 8%;
    left: -50px;
    animation: float 5.5s ease-in-out infinite 2.5s;
}

.fb-icon,
.floating-card-icon {
    font-size: 1.4rem;
}

.fb-text,
.floating-card-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.fb-text strong,
.floating-card-text strong {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-1);
}

.fb-text span,
.floating-card-text span {
    font-size: .7rem;
    color: var(--text-3);
}

.scroll-hint,
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: .45;
}

.scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4A90D9;
    animation: scroll-bounce 1.8s ease-in-out infinite;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 70px 0;
    background: var(--bg-0);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
    text-align: center;
}

.problem-section .section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8BBFE8;
    margin-bottom: 14px;
    display: block;
}

.problem-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 36px;
}

.problem-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
}

.problem-item {
    background: rgba(15, 62, 117, .12);
    border: 1px solid rgba(15, 62, 117, .3);
    border-radius: var(--r-m);
    padding: 14px 22px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-2);
    transition: all .25s;
}

.problem-item:hover {
    background: rgba(15, 62, 117, .22);
    border-color: rgba(15, 62, 117, .55);
    transform: translateY(-2px);
    color: var(--text-1);
}

.section-description {
    font-size: 1rem;
    color: var(--text-3);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

.trust-pill,
.partner-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: 1px solid var(--border-dim);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-3);
    background: var(--bg-3);
    transition: all .25s;
    cursor: default;
}

.trust-pill:hover,
.partner-badge:hover {
    border-color: var(--border-vis);
    color: var(--text-1);
    transform: translateY(-2px);
}

.partner-icon {
    font-size: 1rem;
}

/* ===== STATS ===== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
}

.stat-num,
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #4A90D9;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}

.stat-lbl,
.stat-label {
    font-size: .85rem;
    color: var(--text-3);
    font-weight: 500;
}

/* ===== SERVICES ===== */
.services-section {
    padding: var(--section-pad);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* — Flip cards (HTML uses service-card-flip) — */
.service-card-flip {
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .75s cubic-bezier(.4, 0, .2, 1);
    border-radius: var(--r-l);
}

.service-card-flip:hover .service-card-inner,
.service-card-flip.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    border-radius: var(--r-l);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}

.service-card-front {
    border: 1px solid var(--border-dim);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.service-card-flip:hover .service-image {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.service-icon-front {
    font-size: 2rem;
    margin-bottom: 8px;
}

.service-title-front {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.flip-hint {
    font-size: .7rem;
    color: var(--primary-pale);
    font-weight: 500;
}

.service-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(21, 28, 46, .97) 0%, rgba(12, 12, 18, .99) 100%);
    border: 1px solid var(--border-vis);
}

.service-icon-back {
    font-size: 2.2rem;
}

.service-title-back {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
}

.service-description {
    font-size: .88rem;
    color: var(--text-3);
    line-height: 1.65;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.feature-tag {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 50px;
    background: rgba(15, 62, 117, .25);
    border: 1px solid rgba(15, 62, 117, .4);
    color: var(--primary-pale);
}

/* — Old hover cards (srv-card) for backward compat — */
.srv-card {
    position: relative;
    border-radius: var(--r-l);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    border: 1px solid var(--border-dim);
    transition: all .35s ease;
}

.srv-card:hover {
    border-color: var(--border-vis);
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.srv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.srv-card:hover .srv-img {
    transform: scale(1.06);
}

.srv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .4) 55%, rgba(0, 0, 0, .05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.srv-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.srv-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.srv-desc {
    font-size: .85rem;
    color: #A1A1AA;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s ease, opacity .35s ease;
}

.srv-card:hover .srv-desc {
    max-height: 80px;
    opacity: 1;
}

.srv-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(15, 62, 117, .25);
    border: 1px solid rgba(15, 62, 117, .4);
    color: #8BBFE8;
}

/* ===== PROCESS ===== */
.process-section {
    padding: var(--section-pad);
    background: var(--bg-2);
}

.process-steps,
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, rgba(15, 62, 117, .5), rgba(15, 62, 117, .15));
}

.step-card,
.process-step {
    text-align: center;
    padding: 36px 20px;
}

.step-num,
.step-number {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.step-ico,
.step-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.step-ttl,
.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-1);
}

.step-dsc,
.step-desc {
    font-size: .88rem;
    color: var(--text-3);
    line-height: 1.65;
}

/* Arrow connector for new HTML */
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-connector::after {
    content: '→';
    font-size: 1.4rem;
    color: rgba(15, 62, 117, .4);
}

/* ===== SHOWCASE / CASOS DE ÉXITO ===== */
.showcase-section {
    padding: var(--section-pad);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.showcase-card {
    overflow: hidden;
}

.showcase-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.showcase-card:hover .showcase-image {
    transform: scale(1.04);
}

.showcase-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .4);
    color: var(--success);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
}

.showcase-content {
    padding: 26px;
}

.showcase-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.meta-tag {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(15, 62, 117, .18);
    border: 1px solid var(--border-dim);
    color: var(--primary-pale);
}

.showcase-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-1);
}

.showcase-desc {
    font-size: .88rem;
    color: var(--text-3);
    line-height: 1.65;
    margin-bottom: 18px;
}

.showcase-metric {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-dim);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-pale);
}

.metric span {
    font-size: .75rem;
    color: var(--text-4);
}

/* ===== ABOUT / NOSOTROS ===== */
.about-section {
    padding: var(--section-pad);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-wrap,
.about-visual {
    position: relative;
}

.about-img,
.about-image {
    width: 100%;
    max-width: 380px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--r-xl);
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(15, 62, 117, .15);
}

.about-image-container {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(15, 62, 117, .12);
    min-height: 280px;
    background: var(--bg-3);
}

.about-logo-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 5px 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-overlay img {
    height: 36px;
    max-width: 90px;
    width: auto;
    display: block;
    object-fit: contain;
}

.about-float-badge,
.about-float-tag {
    position: absolute;
    top: -18px;
    right: -18px;
    padding: 18px 22px;
    text-align: center;
}

.badge-number,
.tag-big {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-pale);
}

.badge-text,
.tag-small {
    font-size: .75rem;
    color: var(--text-3);
    font-weight: 500;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-title {
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-3);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.val-row,
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(15, 62, 117, .08);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-m);
    transition: all .25s;
}

.val-row:hover,
.value-item:hover {
    background: rgba(15, 62, 117, .14);
    border-color: var(--border-vis);
}

.val-ico,
.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.val-ttl,
.value-item strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 2px;
}

.val-dsc,
.value-item p {
    font-size: .85rem;
    color: var(--text-3);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: var(--section-pad);
    background: var(--bg-1);
}

.testi-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card,
.testimonial-card {
    padding: 32px 28px;
}

.stars {
    color: var(--warning);
    font-size: 1rem;
    letter-spacing: .1em;
    margin-bottom: 16px;
}

.testi-quote,
.testimonial-quote {
    font-size: .95rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author,
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar,
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0;
}

.author-name,
.author-info strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 1px;
    display: block;
}

.author-place,
.author-info span {
    font-size: .78rem;
    color: var(--text-3);
}

/* ===== CTA ===== */
.cta-section {
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-0) 0%, #040e1a 50%, var(--bg-0) 100%);
    border-top: 1px solid var(--border-dim);
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(15, 62, 117, .2) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}

.cta-inner,
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 16px;
}

.cta-sub,
.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-3);
    margin-bottom: 32px;
    line-height: 1.75;
}

.cta-btns,
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note,
.cta-location {
    font-size: .85rem;
    color: var(--text-4);
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-2);
}

.urgency-icon {
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #060A12;
    border-top: 1px solid var(--border-dim);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo-box,
.footer-logo-wrap {
    background: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo-box img,
.footer-logo {
    height: 36px;
    max-height: 36px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
}

.footer-desc {
    font-size: .88rem;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-4);
    transition: all .25s;
}

.social-link:hover {
    border-color: var(--border-vis);
    color: var(--primary-pale);
    background: rgba(15, 62, 117, .12);
    transform: translateY(-2px);
}

.footer-col h4,
.footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: .88rem;
    color: var(--text-4);
}

.footer-links a {
    font-size: .88rem;
    color: var(--text-3);
    transition: color .25s;
}

.footer-links a:hover {
    color: #4A90D9;
}

.footer-bottom {
    border-top: 1px solid var(--border-dim);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .82rem;
    color: var(--text-4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: .82rem;
    color: var(--text-4);
    transition: color .25s;
}

.footer-legal a:hover {
    color: var(--text-2);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float,
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    padding: 13px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
    transition: all .3s ease;
    animation: float-wa 4s ease-in-out infinite;
}

.wa-float:hover,
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 32px rgba(37, 211, 102, .55);
    color: #fff;
}

.wa-float-label,
.whatsapp-float-label {
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .hero-grid,
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub,
    .hero-subtitle {
        max-width: 100%;
    }

    .hero-ctas,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .fb-right,
    .card-top-right {
        right: -10px;
    }

    .fb-left,
    .card-bottom-left {
        left: -10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .process-steps,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .process-connector {
        display: none;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 70px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(9, 9, 11, .97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger,
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-cta {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .fb-right,
    .fb-left,
    .card-top-right,
    .card-bottom-left {
        display: none;
    }

    .wa-float-label,
    .whatsapp-float-label {
        display: none;
    }

    .wa-float,
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }

    .cta-btns,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-float-badge,
    .about-float-tag {
        display: none;
    }
}

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

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}