/* ------------------ RESET ------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

/* ------------------ NAV ------------------ */
.top-bar {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
    z-index: 50;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffffcc;
    text-decoration: none;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
}

/* Línea animada inferior */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #f7ff1f;
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Estado activo */
.nav-link.active {
    color: #f7ff1f;
}

.nav-link.active::after {
    width: 100%;
}

/* ------------------ HERO LAYOUT ------------------ */
.page {
    min-height: 100vh;
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1.25fr;
    min-height: 100vh;
    position: relative;
}

/* Fondo derecho curvo */
.right-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, #000, #0a0a0a, #000);
    z-index: -1;
}

/* ------------------ LEFT SIDE ------------------ */
.left-bg {
    position: relative;
    background: #3b3b3b;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* halos de fondo */
.left-bg-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.45), transparent 65%);
    pointer-events: none;
}

.orbit-1 {
    width: 520px;
    height: 520px;
    left: -160px;
    top: -120px;
}

.orbit-2 {
    width: 420px;
    height: 420px;
    right: -140px;
    bottom: -160px;
}

.vertical-text {
    position: absolute;
    left: 40px;
    top: 65%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.vertical-separator {
    display: inline-block;
    width: 90%;
    height: 2px;
    background: #fff;
    margin-left: 12px;
}

/* Contenedor principal en gris */
.watch-wrapper {
    width: 85%;
    max-width: 520px;
    /* <-- más ancho para el mockup web */
    max-height: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
}

/* Mockups web + móvil */
.services-devices {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ------------------ WEB PREVIEW (parte superior) ------------------ */
.web-preview {
    flex: 0 0 190px;
    /* <-- altura mínima para que no se vea aplastado */
    width: 100%;
    background: #1c1c1c;
    border-radius: 20px;
    border: 2px solid #111;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.web-header {
    height: 30px;
    background: #101010;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
}

.web-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #555;
}

.web-body {
    flex: 1;
    padding: 14px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.web-line {
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7ff1f, #ffffff);
    opacity: 0.85;
}

.web-line-sub {
    width: 65%;
    background: linear-gradient(90deg, #8cff4a, #ffffff);
}

.web-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.web-card {
    height: 48px;
    /* <-- más alto para que se vea más “lleno” */
    border-radius: 12px;
    background: linear-gradient(135deg, #1f2933, #111827);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.55);
}

/* ------------------ MOBILE PREVIEW (parte inferior) ------------------ */
.mobile-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone mockup */
.phone-frame {
    width: 210px;
    height: 410px;
    background: #0b0b0b;
    border-radius: 34px;
    position: relative;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
    border: 3px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch {
    position: absolute;
    top: 12px;
    width: 90px;
    height: 22px;
    background: #111;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 86%;
    height: 86%;
    background: #000;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen img {
    width: 60%;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

/* ------------------ TAGS + STATS ------------------ */

.tags-and-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(247, 255, 31, 0.5);
    color: #f9fafb;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.stats-row {
    display: flex;
    gap: 10px;
}

.stat-card {
    flex: 1;
    border-radius: 14px;
    background: radial-gradient(circle at top left, rgba(247, 255, 31, 0.12), #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.6);
    padding: 10px 12px;
    margin: 5px;
    color: #f9fafb;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #f7ff1f;
}

.stat-label {
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.85;
}

/* ------------------ RIGHT SIDE ------------------ */
.right-bg {
    position: relative;
    padding: 130px 80px 80px;
    color: #f5f5f5;
    overflow: hidden;
}

/* Paneles de fondo */
.bg-panels {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.panel {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    opacity: 0.85;
    transform: translate3d(0, 0, 0);
}

/* Distintas posiciones y tamaños base */
.panel-1 {
    width: 260px;
    height: 150px;
    top: 80px;
    right: 80px;
}

.panel-2 {
    width: 220px;
    height: 130px;
    top: 260px;
    right: 380px;
}

.panel-3 {
    width: 260px;
    height: 140px;
    top: 430px;
    right: 120px;
    opacity: 0.6;
}

.product-title {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 5px;
    color: #ffffffc0;
}

.product-name {
    margin-top: 10px;
    font-size: 36px;
    letter-spacing: 4px;
    font-weight: 600;
}

.divider-line {
    margin: 25px 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #e7e7e7;
    max-width: 580px;
}

/* ------------------ COLORS DOTS ------------------ */
.color-dots {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dot-black {
    background: #000;
}

.dot-green {
    background: #7df24a;
}

.dot-yellow {
    background: #f7ff1f;
}

.dot-pink {
    background: #f6a9c1;
}

.dot-olive {
    background: #c7c470;
}

/* ------------------ CTA AREA ------------------ */
.price-row {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #f7ff1f;
}

.buy-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 35px;
    border-radius: 999px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #111;
    letter-spacing: 1px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.buy-btn-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f7ff1f;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ------------------ SERVICES GRID ------------------ */

.services-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, #111111, #181818);
    border-radius: 18px;
    padding: 18px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease,
        border-color 0.25s ease, background 0.25s ease;
    overflow: hidden;
}

/* brillo suave en hover */
.service-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0,
            rgba(247, 255, 31, 0.22), transparent 60%);
    opacity: 0;
    transform: translate3d(-40px, -40px, 0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.6);
    border-color: #f7ff1f55;
    background: linear-gradient(135deg, #131313, #1e1e1e);
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-text {
    font-size: 14px;
    line-height: 1.5;
    color: #d7d7d7;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .right-bg {
        padding: 110px 30px 60px;
    }

    .nav-menu {
        gap: 28px;
    }

    .product-name {
        font-size: 28px;
    }

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

    .watch-wrapper {
        max-height: none;
        margin: 110px 0 20px;
    }
}

@media (max-width: 600px) {
    .phone-frame {
        transform: scale(0.9);
    }

    .product-desc {
        font-size: 14px;
    }

    .services-grid {
        gap: 18px;
    }
}