/* ================================================
   JUPITAR INFO SERVICES — Brand Stylesheet v2
   Inspired by the brand video: orbits, rockets, energy
   ================================================ */

:root {
    /* Core brand */
    --orange: #FF6A00;
    --orange-bright: #FF7A1A;
    --orange-soft: #ffb27a;
    --orange-deep: #d44e00;
    --orange-glow: rgba(255, 106, 0, 0.45);

    /* Space backgrounds */
    --space-0: #05080F;
    --space-1: #0A0F1C;
    --space-2: #111827;
    --space-3: #1a2235;
    --space-line: rgba(255, 255, 255, 0.08);

    /* Light surfaces */
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #eef1f6;
    --gray-300: #c6ccd6;
    --gray-500: #6b7488;
    --gray-700: #3a4252;
    --text: #1a2436;

    --shadow-sm: 0 2px 8px rgba(5, 8, 15, 0.06);
    --shadow-md: 0 10px 30px rgba(5, 8, 15, 0.10);
    --shadow-lg: 0 25px 60px rgba(5, 8, 15, 0.18);
    --shadow-orange: 0 15px 40px rgba(255, 106, 0, 0.35);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--orange); color: var(--white); }

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

.text-orange { color: var(--orange); }

/* ===== Eyebrow / Section heads ===== */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 106, 0, 0.10);
    border: 1px solid rgba(255, 106, 0, 0.28);
    padding: 8px 16px; border-radius: 100px;
    margin-bottom: 22px;
    position: relative;
}
.eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 10px var(--orange);
    animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.eyebrow i { font-size: 11px; }
.eyebrow-dark {
    color: var(--space-1);
    background: rgba(5, 8, 15, 0.05);
    border-color: rgba(5, 8, 15, 0.10);
}
.eyebrow-dark::before { background: var(--orange); }

.section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--space-1);
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-sub {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.72); }
.section-head {
    text-align: center;
    margin-bottom: 64px;
    display: flex; flex-direction: column; align-items: center;
}
.section-head .section-sub { margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600; font-size: 15px;
    transition: all .35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    position: relative; overflow: hidden;
    border: 1px solid transparent;
}
.btn::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .5s var(--ease), height .5s var(--ease);
    z-index: 0;
}
.btn:hover::before { width: 400px; height: 400px; }
.btn > * { position: relative; z-index: 1; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(255, 106, 0, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: #1eb858; transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(5, 8, 15, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all .35s var(--ease);
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(5, 8, 15, 0.92);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    border-bottom-color: rgba(255, 106, 0, 0.15);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.header-right {
    display: flex; align-items: center; gap: 14px;
}
@media (max-width: 1100px) {
    .main-nav ul { gap: 0; }
    .main-nav a { padding: 8px 10px; font-size: 13.5px; }
}
.brand {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--white);
    font-weight: 700;
}
.brand-logo {
    width: 46px; height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 106, 0, 0.4));
    transition: transform .4s var(--ease-bounce);
}
.brand:hover .brand-logo { transform: rotate(-12deg) scale(1.08); }
.brand-text {
    display: flex; flex-direction: column; line-height: 1.05;
    font-size: 18px; letter-spacing: -0.01em;
}
.brand-text small {
    font-size: 10.5px; font-weight: 500;
    color: var(--orange);
    letter-spacing: 0.20em; text-transform: uppercase;
    margin-top: 2px;
}
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
    color: rgba(255,255,255,0.78);
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
}
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
    content: ''; position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 2px;
    background: var(--orange);
    box-shadow: 0 0 12px var(--orange-glow);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.header-cta { padding: 11px 22px; font-size: 14px; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
}
.nav-toggle span {
    width: 22px; height: 2px; background: var(--white);
    transition: all .3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== STARFIELD (global) ===== */
.starfield {
    position: absolute; inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.star {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 3s infinite ease-in-out;
}
@keyframes twinkle {
    0%,100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 80px;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 106, 0, 0.18), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 106, 0, 0.10), transparent 50%),
        linear-gradient(180deg, var(--space-0) 0%, var(--space-1) 50%, var(--space-2) 100%);
    color: var(--white);
    overflow: hidden;
    display: flex; align-items: center;
}
.hero-grid-overlay {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
    position: relative; z-index: 3;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 60px; align-items: center;
    width: 100%;
}
.hero-title {
    font-size: clamp(36px, 5.2vw, 62px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}
.hero-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}
.hero-title .word span {
    display: inline-block;
    transform: translateY(110%);
    animation: wordReveal 1s var(--ease) forwards;
}
@keyframes wordReveal {
    to { transform: translateY(0); }
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.65;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-ctas {
    display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.hero-stats {
    display: flex; gap: 48px; flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.10);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.hero-stats .stat strong {
    font-size: 38px; font-weight: 800;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.02em;
}
.hero-stats .stat span {
    color: var(--orange);
    font-size: 28px; font-weight: 700;
    margin-left: 2px;
}
.hero-stats .stat p {
    color: rgba(255,255,255,0.6);
    font-size: 12.5px; margin-top: 4px;
    text-transform: uppercase; letter-spacing: 0.10em;
}

/* ===== HERO ORBIT VISUAL (logo + planet ring + rocket) ===== */
.hero-visual {
    position: relative;
    height: 540px;
    display: flex; align-items: center; justify-content: center;
}
.orbit-system {
    position: relative;
    width: 480px; height: 480px;
}
/* concentric orbital rings */
.orbit-ring {
    position: absolute;
    border: 1px dashed rgba(255, 106, 0, 0.20);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.orbit-ring.r1 { width: 100%; height: 100%; animation: spin 40s linear infinite; }
.orbit-ring.r2 {
    width: 78%; height: 78%;
    border-color: rgba(255, 106, 0, 0.30);
    border-style: solid; border-width: 1px;
    animation: spin 28s linear infinite reverse;
}
.orbit-ring.r3 {
    width: 56%; height: 56%;
    border-color: rgba(255, 106, 0, 0.15);
    animation: spin 18s linear infinite;
}
@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Planet/dot riding the outer orbit (like the logo's dot) */
.orbit-planet {
    position: absolute;
    top: 50%; left: 50%;
    width: 240px; height: 240px;
    transform: translate(-50%, -50%);
    animation: planetSpin 14s linear infinite;
}
.orbit-planet::before {
    content: '';
    position: absolute;
    top: -8px; left: 50%;
    width: 16px; height: 16px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 20px var(--orange),
        0 0 40px rgba(255, 106, 0, 0.5);
}
@keyframes planetSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Central logo */
.orbit-logo {
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    transform: translate(-50%, -50%);
    z-index: 4;
    animation: logoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(255, 106, 0, 0.5));
}
@keyframes logoFloat {
    0%,100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}
.orbit-logo img { width: 100%; height: 100%; object-fit: contain; }

/* Floating service chips orbiting */
.orbit-chip {
    position: absolute;
    background: rgba(10, 15, 28, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 106, 0, 0.30);
    padding: 11px 16px;
    border-radius: 100px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    white-space: nowrap;
    animation: chipFloat 8s ease-in-out infinite;
    z-index: 5;
}
.orbit-chip i {
    color: var(--orange);
    font-size: 14px;
}
.orbit-chip.c1 { top: 8%; left: -10%; animation-delay: 0s; }
.orbit-chip.c2 { top: 30%; right: -15%; animation-delay: 1.5s; }
.orbit-chip.c3 { bottom: 18%; left: -12%; animation-delay: 3s; }
.orbit-chip.c4 { bottom: 5%; right: -5%; animation-delay: 4.5s; }
@keyframes chipFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* The HERO ROCKET — launches when CTA is hovered */
.hero-rocket {
    position: absolute;
    bottom: 8%; left: 12%;
    width: 60px; height: 90px;
    z-index: 6;
    transform-origin: center bottom;
    animation: rocketIdle 4s ease-in-out infinite;
    transition: transform 1.4s cubic-bezier(.5,0,.2,1);
}
.hero-rocket .rocket-body {
    position: relative;
    width: 100%; height: 100%;
}
@keyframes rocketIdle {
    0%,100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-8px) rotate(-8deg); }
}
.hero.launching .hero-rocket {
    animation: rocketLaunch 1.8s cubic-bezier(.5,0,.2,1) forwards;
}
@keyframes rocketLaunch {
    0% { transform: translateY(0) rotate(-8deg); opacity: 1; }
    30% { transform: translateY(-100px) translateX(50px) rotate(15deg) scale(1); opacity: 1; }
    100% { transform: translateY(-700px) translateX(400px) rotate(35deg) scale(0.4); opacity: 0; }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    z-index: 5;
}
.scroll-indicator span {
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 8px;
    background: var(--orange);
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollDown 1.6s infinite;
    box-shadow: 0 0 10px var(--orange);
}
@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--off-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}
.trust-label {
    text-align: center;
    font-size: 13px; font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 28px;
}
.trust-label strong { color: var(--space-1); }
.logos-marquee {
    display: flex;
    gap: 50px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.logos-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.logo-item {
    font-family: 'Inter', sans-serif;
    font-size: 19px; font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: all .3s var(--ease);
    display: flex; align-items: baseline; gap: 4px;
    flex-shrink: 0;
}
.logo-item span {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em;
}
.logo-item:hover { color: var(--orange); opacity: 1; }

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    transition: all .4s var(--ease);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-bright), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--ease);
}
.service-card::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 106, 0, 0.12), var(--shadow-lg);
    border-color: rgba(255, 106, 0, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--space-1), var(--space-3));
    color: var(--orange);
    display: grid; place-items: center;
    font-size: 26px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(5, 8, 15, 0.15);
    transition: all .4s var(--ease);
    position: relative;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
}
.service-card h3 {
    font-size: 22px; font-weight: 700;
    color: var(--space-1);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    position: relative; z-index: 1;
}
.service-desc {
    color: var(--gray-500);
    font-size: 15px; line-height: 1.6;
    margin-bottom: 22px;
    position: relative; z-index: 1;
}
.service-list { margin-bottom: 24px; position: relative; z-index: 1; }
.service-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0;
    font-size: 14.5px;
    color: var(--gray-700);
}
.service-list i {
    color: var(--orange);
    font-size: 12px;
    margin-top: 5px;
}
.service-benefit {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 106, 0, 0.08);
    color: var(--orange-deep);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13.5px; font-weight: 600;
    border: 1px dashed rgba(255, 106, 0, 0.4);
    position: relative; z-index: 1;
}

/* ===== VALUE / WHY US ===== */
.value-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.18), transparent 50%),
        linear-gradient(180deg, var(--space-1), var(--space-2));
    color: var(--white);
    padding: 120px 0;
    position: relative; overflow: hidden;
}
.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
.value-points { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.value-point {
    display: flex; gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all .35s var(--ease);
}
.value-point:hover {
    padding-left: 12px;
    border-bottom-color: rgba(255, 106, 0, 0.4);
}
.value-point:last-child { border-bottom: none; }
.vp-icon {
    width: 50px; height: 50px;
    background: rgba(255, 106, 0, 0.15);
    color: var(--orange);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all .35s var(--ease);
}
.value-point:hover .vp-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(-8deg);
}
.value-point h4 {
    font-size: 17px; font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.value-point p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Performance dashboard mock */
.value-card-stack {
    position: relative;
    height: 480px;
}
.vc {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.vc-1 { top: 0; left: 0; width: 80%; padding: 24px; }
.vc-header {
    display: flex; align-items: center; gap: 7px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}
.vc-header .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c941; }
.vc-title {
    margin-left: 12px;
    font-size: 13px; color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.vc-body .metric {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.vc-body .metric strong { font-size: 17px; color: var(--orange); }
.bar-chart {
    display: flex; align-items: flex-end; gap: 8px;
    height: 90px;
    margin-top: 18px;
}
.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--orange-bright), rgba(255, 106, 0, 0.2));
    border-radius: 6px 6px 0 0;
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.3);
    animation: barPulse 3s ease-in-out infinite;
}
.bar:nth-child(1) { height: 35%; animation-delay: 0s; }
.bar:nth-child(2) { height: 55%; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 45%; animation-delay: 0.4s; }
.bar:nth-child(4) { height: 75%; animation-delay: 0.6s; }
.bar:nth-child(5) { height: 90%; animation-delay: 0.8s; }
.bar:nth-child(6) { height: 100%; animation-delay: 1s; }
@keyframes barPulse {
    0%,100% { transform: scaleY(1); }
    50% { transform: scaleY(0.92); }
}
.vc-2 {
    bottom: 0; right: 0;
    width: 62%;
    padding: 22px;
    display: flex; gap: 14px; align-items: center;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(255, 106, 0, 0.04));
    border-color: rgba(255, 106, 0, 0.35);
}
.vc-icon {
    width: 50px; height: 50px;
    background: var(--orange);
    color: var(--white);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}
.vc-eyebrow {
    color: var(--orange);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
}
.vc-text { font-weight: 600; color: var(--white); font-size: 15px; margin-top: 2px; }

/* ===== PROCESS — with launch pad rocket ===== */
.process {
    padding: 120px 0 140px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 80px; left: 16%; right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
    opacity: 0.5;
    z-index: 0;
}
.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all .35s var(--ease);
    z-index: 1;
    border: 1px solid transparent;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 106, 0, 0.15);
    border-color: rgba(255, 106, 0, 0.2);
}
.step-num {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.20;
    line-height: 1;
    position: absolute;
    top: 18px; right: 28px;
    letter-spacing: -0.04em;
}
.step-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--space-1), var(--space-3));
    color: var(--orange);
    border-radius: 16px;
    display: grid; place-items: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(5, 8, 15, 0.15);
    transition: all .4s var(--ease);
}
.process-step:hover .step-icon {
    transform: scale(1.08) rotate(-6deg);
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
}
.process-step h3 {
    font-size: 21px; font-weight: 700;
    color: var(--space-1);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.process-step p {
    color: var(--gray-500);
    font-size: 15px; line-height: 1.65;
}
/* Launch step special treatment */
.process-step.launch-step {
    background: linear-gradient(135deg, var(--space-1), var(--space-2));
    color: var(--white);
    overflow: hidden;
}
.launch-step h3 { color: var(--white); }
.launch-step p { color: rgba(255,255,255,0.7); }
.launch-step .step-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.5);
}
.launch-step .step-num {
    opacity: 0.18;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
    -webkit-background-clip: text; background-clip: text;
}
.launch-step::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--orange-glow), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

/* The launch pad rocket */
.launch-pad {
    position: absolute;
    bottom: 0; right: 8%;
    width: 80px; height: 200px;
    z-index: 2;
    pointer-events: none;
}
.launch-pad .rocket-2 {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    width: 50px;
    animation: padIdle 3s ease-in-out infinite;
}
@keyframes padIdle {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}
.launch-pad-base {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 30px;
    background:
        linear-gradient(180deg, transparent, rgba(255, 106, 0, 0.15)),
        repeating-linear-gradient(90deg, var(--space-1) 0 4px, transparent 4px 8px);
    border-radius: 4px 4px 0 0;
}
.launch-smoke {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 30px;
    background: radial-gradient(circle, var(--orange-glow), transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
    animation: smokePuff 2s ease-in-out infinite;
}
@keyframes smokePuff {
    0%,100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.4); }
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 120px 0;
    background: var(--white);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 22px;
}
.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    color: var(--white);
    transition: all .5s var(--ease);
    box-shadow: var(--shadow-md);
}
.portfolio-item.large { grid-column: span 2; }
.portfolio-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(255, 106, 0, 0.2);
}
.portfolio-visual {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    overflow: hidden;
    transition: transform .8s var(--ease);
}
.portfolio-item:hover .portfolio-visual { transform: scale(1.05); }
.portfolio-meta {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 26px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
    z-index: 2;
}
.pf-tag {
    display: inline-block;
    background: rgba(255, 106, 0, 0.85);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.10em; text-transform: uppercase;
    margin-bottom: 10px;
}
.portfolio-meta h4 {
    font-size: 19px; font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.portfolio-meta p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* Portfolio mocks */
.pf-mock { width: 70%; height: 60%; }
.pf-mock-web {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
}
.pf-mock-web::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 22px;
    background: var(--gray-100);
    border-radius: 8px 8px 0 0;
}
.pf-mock-web::after {
    content: ''; position: absolute;
    top: 36px; left: 12px; right: 12px; bottom: 12px;
    background:
        linear-gradient(180deg, var(--orange) 0%, var(--orange) 30%, var(--white) 30%, var(--white) 100%),
        repeating-linear-gradient(180deg, var(--gray-100) 0 4px, transparent 4px 12px);
    background-blend-mode: normal;
    border-radius: 4px;
}
.pf-mock-video {
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--white);
    font-size: 32px;
    border: 2px solid rgba(255,255,255,0.3);
    animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 0 25px rgba(255,255,255,0); }
}
.pf-mock-brand {
    width: 130px; height: 130px;
    background: var(--white);
    color: var(--orange);
    font-size: 80px; font-weight: 800;
    display: grid; place-items: center;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.pf-mock-motion {
    display: flex; gap: 12px;
    align-items: flex-end;
}
.pf-mock-motion span {
    width: 18px; height: 50px;
    background: rgba(255,255,255,0.85);
    border-radius: 4px;
    animation: motionBar 1.2s ease-in-out infinite;
}
.pf-mock-motion span:nth-child(2) { animation-delay: 0.2s; height: 80px; }
.pf-mock-motion span:nth-child(3) { animation-delay: 0.4s; height: 65px; }
@keyframes motionBar {
    0%,100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}
.pf-mock-campaign {
    display: flex; flex-direction: column; gap: 14px;
}
.campaign-stat {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 24px;
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 30px;
    min-width: 220px;
}
.campaign-stat strong {
    font-size: 22px;
    font-weight: 800;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 106, 0, 0.15), transparent 50%),
        linear-gradient(180deg, var(--space-1), var(--space-2));
    color: var(--white);
    padding: 120px 0;
    position: relative; overflow: hidden;
}
.testimonials::before {
    content: '"';
    position: absolute;
    top: -100px; left: -50px;
    font-family: Georgia, serif;
    font-size: 600px;
    color: rgba(255, 106, 0, 0.05);
    line-height: 1;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}
.testimonial {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    backdrop-filter: blur(10px);
    transition: all .35s var(--ease);
    display: flex; flex-direction: column;
}
.testimonial:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 0, 0.4);
    background: rgba(255, 106, 0, 0.05);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.15);
}
.testimonial.featured {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 106, 0, 0.02));
    border-color: rgba(255, 106, 0, 0.30);
}
.stars {
    display: flex; gap: 4px;
    color: var(--orange);
    margin-bottom: 18px;
    font-size: 13px;
    text-shadow: 0 0 10px var(--orange-glow);
}
.testimonial blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 26px;
    flex-grow: 1;
}
.t-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.t-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    color: var(--white);
    display: grid; place-items: center;
    font-weight: 700; font-size: 15px;
    letter-spacing: 0.05em;
}
.t-author strong {
    display: block;
    font-size: 15px;
    color: var(--white);
}
.t-author span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background:
        linear-gradient(135deg, var(--space-0), var(--space-1) 70%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 106, 0, 0.30), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 106, 0, 0.18), transparent 40%);
}
.cta-inner {
    display: flex; justify-content: space-between; align-items: center;
    gap: 40px; position: relative; z-index: 2;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.cta-text p {
    color: rgba(255,255,255,0.7);
    font-size: 16.5px;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.about-content p {
    color: var(--gray-700);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-pillars {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-100);
}
.pillar strong {
    font-size: 38px;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
}
.pillar span {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
    display: block;
}
.about-image-stack {
    position: relative;
    height: 460px;
}
.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px;
    overflow: hidden;
}
.about-img i { font-size: 48px; color: var(--orange); }
.about-img span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
}
.about-img-1 {
    width: 65%; height: 80%;
    bottom: 0; left: 0;
    background: linear-gradient(135deg, var(--space-1), var(--space-2));
}
.about-img-2 {
    width: 55%; height: 60%;
    top: 0; right: 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
}
.about-img-2 i { color: var(--white); }
.about-badge {
    position: absolute;
    bottom: 30px; right: -10px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--orange);
}
.about-badge strong {
    display: block;
    font-size: 22px;
    color: var(--space-1);
    font-weight: 800;
}
.about-badge span {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

/* ===== CONTACT ===== */
.contact {
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 106, 0, 0.18), transparent 50%),
        linear-gradient(180deg, var(--space-1), var(--space-0));
    color: var(--white);
    padding: 120px 0;
    position: relative; overflow: hidden;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}
.contact-list {
    margin: 36px 0 30px;
    display: flex; flex-direction: column; gap: 16px;
}
.contact-list li {
    display: flex; gap: 16px; align-items: center;
    transition: transform .3s var(--ease);
}
.contact-list li:hover { transform: translateX(6px); }
.ci-icon {
    width: 48px; height: 48px;
    background: rgba(255, 106, 0, 0.15);
    color: var(--orange);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}
.contact-list li:hover .ci-icon {
    background: var(--orange);
    color: var(--white);
}
.contact-list span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.contact-list a {
    color: var(--white);
    font-size: 15.5px;
    font-weight: 500;
}
.contact-list a:hover { color: var(--orange); }
.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}
.contact-form h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-row .form-group { margin-bottom: 0; }
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    color: var(--white);
    font-size: 14.5px;
    transition: all .25s var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF6A00' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 10px;
    padding-right: 40px;
}
.form-group select option { background: var(--space-1); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-form .btn-block { margin-top: 8px; }
.btn-loader { display: none; }
.contact-form.loading .btn-label { display: none; }
.contact-form.loading .btn-loader { display: inline-flex; }
.form-note {
    margin-top: 18px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    text-align: center;
}
.form-note i { color: var(--orange); margin-right: 6px; }
.form-success {
    display: none;
    position: absolute; inset: 0;
    background: rgba(5, 8, 15, 0.96);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 60px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-success.active { display: flex; }
.form-success i {
    font-size: 56px;
    color: var(--orange);
    margin-bottom: 18px;
    text-shadow: 0 0 30px var(--orange-glow);
}
.form-success h4 {
    font-size: 24px; font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.form-success p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 320px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--space-0);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
    max-width: 350px;
}
.socials { display: flex; gap: 10px; }
.socials a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: grid; place-items: center;
    color: rgba(255,255,255,0.65);
    transition: all .3s var(--ease);
}
.socials a:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-3px) rotate(-8deg);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}
.footer-col h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-col h5::after {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--orange);
    margin-top: 6px;
}
.footer-col ul li {
    padding: 6px 0;
    font-size: 14.5px;
    color: rgba(255,255,255,0.55);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom ul { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--orange); }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 80;
    transition: all .3s var(--ease);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}
@keyframes whatsappPulse {
    0%,100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ===== AI CHATBOT — NOVA ===== */
/* Floating launcher: a rocket that launches the chat */
.nova-launcher {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--white);
    display: grid; place-items: center;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.5);
    z-index: 90;
    transition: all .35s var(--ease-bounce);
    border: none;
    overflow: visible;
}
.nova-launcher::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    opacity: 0.6;
    animation: novaRing 2s ease-out infinite;
}
@keyframes novaRing {
    0% { transform: scale(0.85); opacity: 0.7; }
    100% { transform: scale(1.4); opacity: 0; }
}
.nova-launcher:hover {
    transform: scale(1.08) rotate(-8deg);
}
.nova-launcher .nova-icon {
    font-size: 26px;
    animation: novaWobble 3s ease-in-out infinite;
}
@keyframes novaWobble {
    0%,100% { transform: rotate(-12deg); }
    50% { transform: rotate(12deg); }
}
.nova-badge {
    position: absolute;
    top: -2px; right: -2px;
    background: #ff3b30;
    color: var(--white);
    font-size: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 700;
    border: 2px solid var(--space-0);
}
.nova-launcher.open { transform: scale(0); pointer-events: none; }
.nova-tooltip {
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--space-1);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 106, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
}
.nova-tooltip strong { color: var(--orange); }
.nova-launcher:hover .nova-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

.nova-window {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 380px;
    max-height: 580px;
    height: 70vh;
    background: linear-gradient(180deg, var(--space-1), var(--space-0));
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    z-index: 91;
    display: flex; flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all .35s var(--ease);
}
.nova-window.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.nova-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    display: flex; align-items: center; gap: 12px;
    position: relative;
}
.nova-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--white);
    display: grid; place-items: center;
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
}
.nova-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px; right: 2px;
    width: 10px; height: 10px;
    background: #2ecc71;
    border: 2px solid var(--white);
    border-radius: 50%;
}
.nova-info { flex: 1; }
.nova-info h4 {
    font-size: 15px; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
}
.nova-info h4 i { font-size: 11px; color: #ffe; }
.nova-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}
.nova-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    display: grid; place-items: center;
    transition: all .25s var(--ease);
}
.nova-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }
.nova-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex; flex-direction: column; gap: 14px;
    scroll-behavior: smooth;
}
.nova-body::-webkit-scrollbar { width: 4px; }
.nova-body::-webkit-scrollbar-track { background: transparent; }
.nova-body::-webkit-scrollbar-thumb { background: rgba(255, 106, 0, 0.3); border-radius: 4px; }

.msg {
    display: flex; gap: 8px;
    align-items: flex-end;
    max-width: 88%;
    animation: msgIn 0.4s var(--ease-bounce);
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.msg-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}
.msg.bot .msg-bubble {
    background: rgba(255, 106, 0, 0.10);
    border: 1px solid rgba(255, 106, 0, 0.20);
    color: var(--white);
    border-bottom-left-radius: 4px;
}
.msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    border-bottom-right-radius: 4px;
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.3);
}
.msg-mini-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid; place-items: center;
    font-size: 11px; font-weight: 700;
    flex-shrink: 0;
}
.msg.bot .msg-mini-avatar {
    background: var(--white);
    color: var(--orange);
}

/* Typing indicator */
.typing {
    display: inline-flex; gap: 4px;
    padding: 14px 18px;
}
.typing span {
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: typingDot 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
    0%,100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

/* Quick suggestion chips */
.nova-suggestions {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 0 20px 10px;
}
.suggestion-chip {
    background: rgba(255, 106, 0, 0.10);
    border: 1px solid rgba(255, 106, 0, 0.25);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12.5px;
    cursor: pointer;
    transition: all .25s var(--ease);
    font-weight: 500;
}
.suggestion-chip:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.nova-input {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; gap: 10px;
    align-items: center;
}
.nova-input input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color .25s var(--ease);
}
.nova-input input:focus { border-color: var(--orange); }
.nova-input input::placeholder { color: rgba(255,255,255,0.35); }
.nova-send {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    display: grid; place-items: center;
    transition: all .25s var(--ease-bounce);
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
}
.nova-send:hover { transform: scale(1.08) rotate(-12deg); }
.nova-send:active { transform: scale(0.95); }
.nova-footer-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    padding: 6px 0 10px;
    background: rgba(255, 255, 255, 0.02);
}
.nova-footer-note i { color: var(--orange); }

/* ===== SCROLL ROCKET — flies along the side as you scroll ===== */
.scroll-rocket {
    position: fixed;
    right: 28px;
    top: 50%;
    width: 36px; height: 56px;
    z-index: 70;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.scroll-rocket.active { opacity: 1; }
.scroll-rocket .trail {
    position: absolute;
    bottom: -40px; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 40px;
    background: linear-gradient(180deg, var(--orange), transparent);
    border-radius: 3px;
    filter: blur(2px);
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { height: 480px; max-width: 500px; margin: 0 auto; }
    .orbit-system { width: 380px; height: 380px; }
    .orbit-logo { width: 160px; height: 160px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: 1fr; gap: 60px; }
    .process-steps { grid-template-columns: 1fr; gap: 24px; }
    .process-steps::before { display: none; }
    .launch-pad { display: none; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-item.large { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .scroll-rocket { display: none; }
}

@media (max-width: 768px) {
    section { padding: 80px 0 !important; }
    .hero { padding: 110px 0 60px; }
    .main-nav {
        position: fixed;
        top: 70px; right: 0;
        width: 100%; max-width: 320px;
        height: calc(100vh - 70px);
        background: var(--space-1);
        padding: 30px 24px;
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .main-nav.active { transform: translateX(0); }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 14px 16px; font-size: 16px; }
    .header-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero-title { font-size: 32px; }
    .hero-stats { gap: 24px; }
    .hero-stats .stat strong { font-size: 28px; }
    .hero-visual { height: 360px; }
    .orbit-system { width: 300px; height: 300px; }
    .orbit-logo { width: 130px; height: 130px; }
    .orbit-chip { font-size: 11px; padding: 8px 12px; }

    .section-head { margin-bottom: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 30px 24px; }

    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .portfolio-item.large { grid-column: span 1; }

    .about-image-stack { height: 360px; }

    .contact-form { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-group { margin-bottom: 18px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .cta-inner { flex-direction: column; text-align: center; }

    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 92px; right: 20px; }
    .nova-launcher { width: 56px; height: 56px; bottom: 20px; left: 20px; }
    .nova-window {
        bottom: 0; left: 0; right: 0;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-sub { font-size: 15.5px; }
    .btn-lg { padding: 14px 24px; font-size: 14.5px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .orbit-chip.c1, .orbit-chip.c3 { left: -5%; }
    .orbit-chip.c2 { right: -5%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
