/* ═══════════════════════════════════════════════════════════
   Abry Cloud — Estilos principales
   ═══════════════════════════════════════════════════════════ */

:root {
    --navy:        #001F44;
    --navy-mid:    #01337a;
    --blue:        #01579E;
    --blue-light:  #058EC9;
    --blue-soft:   #e8f4fd;
    --cyan:        #00b4d8;
    --purple:      #7c3aed;
    --purple-soft: #ede9fe;
    --green:       #10b981;
    --green-soft:  #d1fae5;
    --orange:      #f97316;
    --orange-soft: #ffedd5;
    --indigo:      #4f46e5;
    --indigo-soft: #e0e7ff;
    --cyan-soft:   #cffafe;
    --wa-green:    #25D366;
    --text-dark:   #0f172a;
    --text-mid:    #334155;
    --text-soft:   #64748b;
    --text-muted:  #94a3b8;
    --bg-white:    #ffffff;
    --bg-light:    #f8fafc;
    --bg-subtle:   #f1f5f9;
    --border:      #e2e8f0;
    --border-dark: #cbd5e1;
    --shadow-sm:   0 1px 3px rgba(0,31,68,.07), 0 1px 2px rgba(0,31,68,.05);
    --shadow:      0 4px 12px rgba(0,31,68,.10), 0 2px 4px rgba(0,31,68,.06);
    --shadow-lg:   0 20px 40px rgba(0,31,68,.12), 0 8px 16px rgba(0,31,68,.06);
    --shadow-xl:   0 32px 64px rgba(0,31,68,.16);
    --radius-sm:   8px;
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── HEADER ───────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo:hover { opacity: .85; }
.logo-img { height: 52px; width: auto; }

.header-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-link {
    padding: .5rem .85rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-link--active { color: var(--blue); background: var(--blue-soft); }

.nav-link--highlight {
    color: var(--blue);
    font-weight: 700;
    background: var(--blue-soft);
}
.nav-link--highlight:hover { background: #d1ebf9; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text-mid);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; }
.nav-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(135deg, #001F44 0%, #01337a 50%, #01579E 100%);
    color: white;
    padding: 7rem 2rem 6rem;
    overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--cyan);
    top: -200px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--purple);
    bottom: -150px; left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 300px; height: 300px;
    background: var(--blue-light);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-24px) scale(1.04); }
}

.hero-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 999px;
    margin-bottom: 2rem;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16,185,129,.3);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.3); }
    50%       { box-shadow: 0 0 0 6px rgba(16,185,129,.1); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}
.hero-title--accent {
    background: linear-gradient(90deg, var(--cyan) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-subtitle strong { color: #fff; }

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2rem;
    background: linear-gradient(135deg, var(--cyan) 0%, #0099d4 100%);
    color: var(--navy);
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,180,216,.4);
    transition: transform .2s var(--ease), box-shadow .2s;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,180,216,.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2rem;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.3);
    color: white;
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius);
    transition: background .2s, transform .2s var(--ease);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-3px);
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.65);
    margin-top: .2rem;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
}

/* ── SECTION BASE ────────────────────────── */
.section { padding: 6rem 2rem; }
.section--light { background: var(--bg-light); }

.section-container { max-width: 1200px; margin: 0 auto; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blue);
    background: var(--blue-soft);
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ── SERVICES GRID ───────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
}
.service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow .3s, border-color .3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-dark);
}
.service-card--featured {
    background: linear-gradient(145deg, var(--bg-white) 0%, #faf8ff 100%);
    border-color: rgba(124, 58, 237, .2);
}
.service-card-featured-tag {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: linear-gradient(135deg, var(--purple) 0%, var(--indigo) 100%);
    color: white;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .25rem .65rem;
    border-radius: 999px;
}

.service-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.service-card-icon--blue   { background: var(--blue-soft);   color: var(--blue); }
.service-card-icon--green  { background: var(--green-soft);  color: var(--green); }
.service-card-icon--indigo { background: var(--indigo-soft); color: var(--indigo); }
.service-card-icon--cyan   { background: var(--cyan-soft);   color: #0077a8; }
.service-card-icon--purple { background: var(--purple-soft); color: var(--purple); }
.service-card-icon--orange { background: var(--orange-soft); color: var(--orange); }

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
}
.service-card p {
    font-size: .9rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.service-card-tags span {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-soft);
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    padding: .2rem .6rem;
    border-radius: 999px;
}

/* ── LUKABY SECTION ──────────────────────── */
.lukaby-section {
    background: linear-gradient(135deg, var(--navy) 0%, #01337a 60%, #01579e 100%);
    color: white;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}
.lukaby-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lukaby-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lukaby-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fde68a;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.lukaby-badge i { color: #fde68a; }

.lukaby-logo-wrap { margin-bottom: 1.5rem; }
.lukaby-logo {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.lukaby-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
}
.lukaby-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}

.lukaby-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 2.5rem;
}
.lukaby-feature {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .88rem;
    color: rgba(255,255,255,.85);
    opacity: 0;
    transform: translateY(10px);
}
.lukaby-feature.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.lukaby-feature i {
    width: 28px; height: 28px;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    color: var(--cyan);
}

.lukaby-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-lukaby-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.75rem;
    background: white;
    color: var(--navy);
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    transition: transform .2s var(--ease), box-shadow .2s;
}
.btn-lukaby-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.btn-lukaby-secondary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.75rem;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.3);
    color: white;
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius);
    transition: background .2s, transform .2s var(--ease);
}
.btn-lukaby-secondary:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-3px);
}

/* Mockup visual */
.lukaby-visual { position: relative; }
.lukaby-mockup {
    background: #0d1117;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,.1);
}
.mockup-header {
    background: #161b22;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.mockup-dot.red    { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green  { background: #27c93f; }
.mockup-url {
    margin-left: .75rem;
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    font-family: monospace;
}
.mockup-body {
    display: flex;
    min-height: 280px;
}
.mockup-sidebar {
    width: 48px;
    background: #0d1117;
    border-right: 1px solid rgba(255,255,255,.06);
    padding: 1rem .5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.mockup-nav-item {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: rgba(255,255,255,.35);
}
.mockup-nav-item.active {
    background: rgba(1,87,158,.5);
    color: rgba(255,255,255,.9);
}
.mockup-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.mockup-card {
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.mockup-card-line {
    height: 7px;
    border-radius: 4px;
    background: rgba(255,255,255,.12);
}
.mockup-card-line.short  { width: 40%; }
.mockup-card-line.medium { width: 65%; }
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .5rem;
    margin-top: .25rem;
}
.mockup-stat-card {
    height: 44px;
    border-radius: 8px;
}
.mockup-stat-card.blue   { background: rgba(1,87,158,.35); }
.mockup-stat-card.green  { background: rgba(16,185,129,.25); }
.mockup-stat-card.purple { background: rgba(124,58,237,.3); }

/* Floating badges */
.lukaby-floating-badge {
    position: absolute;
    background: white;
    color: var(--navy);
    font-size: .8rem;
    font-weight: 600;
    padding: .55rem .9rem;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    animation: float-badge 4s ease-in-out infinite;
}
.badge-1 {
    top: -18px; right: -18px;
    animation-delay: 0s;
}
.badge-1 i { color: var(--green); }
.badge-2 {
    bottom: -18px; left: -14px;
    animation-delay: 2s;
}
.badge-2 i { color: var(--wa-green); }
@keyframes float-badge {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ── RENO POS SECTION ────────────────────── */
.nav-link--highlight-orange {
    color: #c2440a;
    font-weight: 700;
    background: #fff3ec;
}
.nav-link--highlight-orange:hover { background: #fde4d0; }

.reno-section {
    background: linear-gradient(135deg, #1c0800 0%, #7a2800 55%, #c2440a 100%);
    color: white;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}
.reno-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.reno-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.reno-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fed7aa;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.reno-badge i { color: #fed7aa; }
.reno-logo-wrap { margin-bottom: 1.5rem; }
.reno-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.reno-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
}
.reno-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}
.reno-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 2.5rem;
}
.reno-feature {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .88rem;
    color: rgba(255,255,255,.85);
    opacity: 0;
    transform: translateY(10px);
}
.reno-feature.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reno-feature i {
    width: 28px; height: 28px;
    background: rgba(255,255,255,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    color: #fed7aa;
}
.reno-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-reno-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.75rem;
    background: white;
    color: #7a2800;
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    transition: transform .2s var(--ease), box-shadow .2s;
}
.btn-reno-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.btn-reno-secondary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.75rem;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.3);
    color: white;
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius);
    transition: background .2s, transform .2s var(--ease);
}
.btn-reno-secondary:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-3px);
}
.reno-section .mockup-nav-item.active {
    background: rgba(194,68,10,.5);
    color: rgba(255,255,255,.9);
}
.reno-floating-badge {
    position: absolute;
    background: white;
    color: var(--text-dark);
    font-size: .8rem;
    font-weight: 600;
    padding: .55rem .9rem;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    animation: float-badge 4s ease-in-out infinite;
}
.reno-badge-1 { top: -18px; right: -18px; animation-delay: 0s; }
.reno-badge-1 i { color: var(--green); }
.reno-badge-2 { bottom: -18px; left: -14px; animation-delay: 2s; }
.reno-badge-2 i { color: #ea6c1e; }
.footer-reno-logo {
    height: 16px; width: auto;
    filter: brightness(0) invert(1);
    opacity: .6;
}

/* ── NAV TABBY HIGHLIGHT ─────────────────── */
.nav-link--highlight-teal {
    color: #00A389 !important;
    font-weight: 700 !important;
}
.nav-link--highlight-teal:hover { color: #00C9A7 !important; }

/* ── TABBY SECTION ───────────────────────── */
.tabby-section {
    background: linear-gradient(135deg, #061510 0%, #0F2819 55%, #1A3D2B 100%);
    color: white;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}
.tabby-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C9A7' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.tabby-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.tabby-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0,201,167,.15);
    border: 1px solid rgba(0,201,167,.35);
    color: #6EF0DC;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.tabby-badge i { color: #6EF0DC; }
.tabby-logo-wrap { margin-bottom: 1.5rem; }
.tabby-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.tabby-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
}
.tabby-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}
.tabby-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 2.5rem;
}
.tabby-feature {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .88rem;
    color: rgba(255,255,255,.85);
    opacity: 0;
    transform: translateY(10px);
}
.tabby-feature.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.tabby-feature i {
    width: 28px; height: 28px;
    background: rgba(0,201,167,.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    color: #6EF0DC;
}
.tabby-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-tabby-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.75rem;
    background: #00C9A7;
    color: #061510;
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,201,167,.35);
    transition: transform .2s var(--ease), box-shadow .2s;
}
.btn-tabby-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,201,167,.5);
}
.btn-tabby-secondary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.75rem;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.25);
    color: white;
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius);
    transition: background .2s, transform .2s var(--ease);
}
.btn-tabby-secondary:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-3px);
}
.tabby-visual { position: relative; }
.tabby-section .mockup-nav-item.tabby-active {
    background: rgba(0,201,167,.35);
    color: rgba(255,255,255,.9);
}
.tabby-floating-badge {
    position: absolute;
    background: white;
    color: var(--text-dark);
    font-size: .8rem;
    font-weight: 600;
    padding: .55rem .9rem;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    animation: float-badge 4s ease-in-out infinite;
}
.tabby-badge-1 { top: -18px; right: -18px; animation-delay: 0s; }
.tabby-badge-1 i { color: #00C9A7; }
.tabby-badge-2 { bottom: -18px; left: -14px; animation-delay: 2.5s; }
.tabby-badge-2 i { color: #1A3D2B; }
.footer-tabby-logo {
    height: 18px; width: auto;
    filter: brightness(0) invert(1);
    opacity: .6;
}

/* ── WHY GRID ────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow .3s, transform .3s var(--ease);
}
.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.why-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
}
.why-card p {
    font-size: .88rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* ── CTA SECTION ─────────────────────────── */
.cta-section {
    background: var(--bg-subtle);
    padding: 6rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-container {
    max-width: 680px;
    margin: 0 auto;
}
.cta-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(1,87,158,.3);
}
.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.cta-desc {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2rem;
    background: var(--wa-green);
    color: white;
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
    transition: transform .2s var(--ease), box-shadow .2s;
}
.btn-cta-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.btn-cta-email {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 2rem;
    background: var(--bg-white);
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--radius);
    transition: transform .2s var(--ease), border-color .2s;
}
.btn-cta-email:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); }

/* ── FOOTER ──────────────────────────────── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 4rem 2rem 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { max-width: 300px; }
.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    opacity: .9;
}
.footer-brand p {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: .6rem; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    transition: background .2s, color .2s, transform .2s;
}
.social-link:hover {
    background: rgba(255,255,255,.15);
    color: white;
    transform: translateY(-2px);
}
.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,.45);
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-col span {
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.footer-col i { width: 14px; flex-shrink: 0; opacity: .7; }

.footer-lukaby-logo {
    height: 16px; width: auto;
    filter: brightness(0) invert(1);
    opacity: .6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-sub { font-size: .78rem !important; }
.footer-bottom a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-bottom a:hover { color: white; }

/* ── WHATSAPP FAB ────────────────────────── */
.wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
    width: 60px; height: 60px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.5);
    transition: transform .25s var(--ease), box-shadow .25s;
    animation: wa-pulse 3s ease-in-out infinite 2s;
}
.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37,211,102,.6);
    animation: none;
}
.wa-fab-icon {
    font-size: 1.8rem;
    color: white;
}
@keyframes wa-pulse {
    0%,80%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
    40%          { box-shadow: 0 6px 24px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,.12); }
}

.wa-fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: white;
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .8rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .2s, transform .2s;
}
.wa-fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%; right: -5px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--navy);
    border-right: 0;
}
.wa-fab:hover .wa-fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ── SCROLL HEADER SHADOW ─────────────────── */
/* Applied via JS */

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    .lukaby-container { grid-template-columns: 1fr; gap: 3rem; }
    .lukaby-visual { display: none; }
    .lukaby-content { max-width: 720px; margin: 0 auto; }
    .reno-container { grid-template-columns: 1fr; gap: 3rem; }
    .reno-visual { display: none; }
    .reno-content { max-width: 720px; margin: 0 auto; }
    .tabby-container { grid-template-columns: 1fr; gap: 3rem; }
    .tabby-visual { display: none; }
    .tabby-content { max-width: 720px; margin: 0 auto; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand { max-width: 100%; grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem;
        gap: .25rem;
        box-shadow: var(--shadow-lg);
    }
    .header-nav--open { display: flex; }
    .header-nav .nav-link { border-radius: var(--radius-sm); padding: .65rem 1rem; font-size: .95rem; }
    .hero { padding: 5rem 1.5rem 4rem; }
    .hero-stats { padding: .85rem 1.25rem; gap: .75rem; }
    .hero-stat-divider { height: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .lukaby-features { grid-template-columns: 1fr; }
    .reno-features { grid-template-columns: 1fr; }
    .tabby-features { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }
    .section { padding: 4rem 1.5rem; }
    .lukaby-section { padding: 5rem 1.5rem; }
    .reno-section { padding: 5rem 1.5rem; }
    .tabby-section { padding: 5rem 1.5rem; }
    .cta-section { padding: 4rem 1.5rem; }
    .wa-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .wa-fab-icon { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta a { text-align: center; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions a { text-align: center; justify-content: center; }
    .lukaby-cta { flex-direction: column; }
    .reno-cta { flex-direction: column; }
    .tabby-cta { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: .75rem; }
    .hero-stat-divider { width: 80px; height: 1px; }
}
