/* ==========================================================================
   IOT PAGE  ·  mobile-first  ·  cinematic dark storytelling
   ========================================================================== */


/* ══════════════════════════════════════════════════════════
   1. HERO — Full-viewport immersive dark
   ══════════════════════════════════════════════════════════ */

.iot-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    overflow: hidden;
    padding-top: var(--nav-height, 72px);
}

[data-theme="dark"] .iot-hero {
    background: #050510;
}

.iot-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.iot-hero__glow {
    position: absolute;
    border-radius: var(--radius-full);
    pointer-events: none;
    will-change: transform;
}

.iot-hero__glow--a {
    width: 65vw;
    height: 65vw;
    top: -15%;
    left: -18%;
    background: radial-gradient(circle, rgba(206, 50, 255, 0.2) 0%, transparent 68%);
    animation: sof-glow-drift 18s var(--ease-in-out) infinite;
}

.iot-hero__glow--b {
    width: 55vw;
    height: 55vw;
    bottom: -20%;
    right: -12%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.16) 0%, transparent 68%);
    animation: sof-glow-drift 24s var(--ease-in-out) 6s infinite reverse;
}

.iot-hero__glow--c {
    width: 40vw;
    height: 40vw;
    top: 40%;
    left: 50%;
    background: radial-gradient(circle, rgba(255, 62, 137, 0.09) 0%, transparent 68%);
    animation: sof-glow-drift 20s var(--ease-in-out) 10s infinite;
}

.iot-hero__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--nav-height, 72px));
    padding-bottom: var(--space-8);
}

.iot-hero__breadcrumb {
    padding-top: var(--space-6);
}

.iot-hero__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-6);
    padding-block: var(--space-10);
}

.iot-hero__title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.iot-hero__line {
    display: block;
    font-size: clamp(3.5rem, 14vw, 9.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    padding-block: 0.06em;
    color: var(--text-primary);
    will-change: transform, opacity;
    animation: sof-line-enter 0.9s var(--ease-smooth) both;
}

.iot-hero__line:nth-child(2) { animation-delay: 0.12s; }
.iot-hero__line:nth-child(3) { animation-delay: 0.24s; }

.iot-hero__line--dim {
    color: var(--text-tertiary);
}

[data-theme="dark"] .iot-hero__line {
    color: rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] .iot-hero__line--dim {
    color: rgba(255, 255, 255, 0.4);
}

.iot-hero__line--gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(206, 50, 255, 0.35));
}

.iot-hero__sub {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    max-width: 42ch;
    margin: 0 auto;
    animation: sof-fade-up 0.9s var(--ease-smooth) 0.85s both;
}

.iot-hero__sub em {
    color: var(--text-primary);
    font-style: normal;
}

.iot-hero__strip {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    flex-wrap: wrap;
    justify-content: center;
    animation: sof-fade-up 0.9s var(--ease-smooth) 0.95s both;
}

.iot-hero__strip-item {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.iot-hero__strip-item sup {
    font-size: 0.5em;
    font-weight: var(--fw-bold);
    color: var(--text-tertiary);
    vertical-align: super;
}

.iot-hero__strip-num {
    font-size: var(--text-2xl);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.iot-hero__strip-slash {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: -0.02em;
}

.iot-hero__strip-label {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.iot-hero__strip-sep {
    width: 1px;
    height: 28px;
    background: var(--border-default);
    flex-shrink: 0;
}

.iot-hero__cue {
    display: flex;
    justify-content: center;
    padding-bottom: var(--space-6);
    animation: sof-fade-up 0.9s var(--ease-smooth) 1.05s both;
}

.iot-hero__cue-line {
    display: block;
    width: 2px;
    height: 72px;
    background: var(--gradient-text);
    border-radius: 2px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.25));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.25));
    animation: sof-scroll-cue 2s var(--ease-in-out) infinite;
}


/* ══════════════════════════════════════════════════════════
   2. STATEMENT — Word-by-word scrub reveal (always dark)
   ══════════════════════════════════════════════════════════ */

.iot-statement {
    padding: 0;
    overflow: visible;
}

.iot-statement__bleed {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #060610;
    --text-primary: rgba(250, 250, 250, 0.95);
    --text-secondary: rgba(250, 250, 250, 0.55);
    --text-tertiary: rgba(250, 250, 250, 0.32);
    --border-default: rgba(255, 255, 255, 0.08);
    padding-block: var(--space-20);
    overflow: clip;
    overflow-clip-margin: 1rem;
}

.iot-statement__bleed::before,
.iot-statement__bleed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3rem;
    z-index: 2;
    pointer-events: none;
}

.iot-statement__bleed::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
}

.iot-statement__bleed::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

[data-theme="light"] .iot-statement__bleed::before,
[data-theme="light"] .iot-statement__bleed::after {
    display: none;
}

.iot-statement__atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(206, 50, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 70%, rgba(81, 112, 255, 0.08) 0%, transparent 50%);
}

.iot-statement__bleed > .container {
    position: relative;
    z-index: 1;
}

.iot-statement__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-12);
}

.iot-statement__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.4);
}

.iot-statement__eyebrow::before,
.iot-statement__eyebrow::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18));
}

.iot-statement__eyebrow::after {
    background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.18));
}

.iot-statement__quote {
    font-size: clamp(3.8rem, 10vw, 10.5rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
    padding-bottom: 0.2em;
    color: rgba(250, 250, 250, 0.9);
    margin: 0;
    text-align: center;
}

.iot-word {
    display: inline-block;
    opacity: 0.08;
    will-change: opacity;
}

.iot-statement__quote span:last-child {
    padding-bottom: 0.18em;
}

.iot-word--accent {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 32px rgba(206, 50, 255, 0));
    transition: filter var(--duration-slow) var(--ease-smooth);
}

.iot-statement__pillars {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-top: 1px solid var(--border-default);
}

.iot-statement__pillar {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-default);
}

.iot-statement__pillar-num {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iot-statement__pillar strong {
    font-size: var(--text-base);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
}

.iot-statement__pillar span {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.iot-statement__pillar-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}


/* ══════════════════════════════════════════════════════════
   3–5. PRODUCT SECTIONS — Centered layout like SaaS Factory
   ══════════════════════════════════════════════════════════ */

.iot-product {
    padding: 0;
    overflow: visible;
}

.iot-product__bleed {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--bg-secondary);
    padding-block: var(--space-16) var(--space-12);
    overflow: hidden;
}

[data-theme="dark"] .iot-product__bleed {
    background: #07071c;
}

.iot-product__bleed--alt {
    background: var(--bg-primary);
}

[data-theme="dark"] .iot-product__bleed--alt {
    background: #060614;
}

.iot-product__atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(81, 112, 255, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 40%, rgba(206, 50, 255, 0.05) 0%, transparent 55%);
}

.iot-product__atmosphere--mobile {
    background:
        radial-gradient(ellipse at 80% 30%, rgba(206, 50, 255, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(255, 62, 137, 0.05) 0%, transparent 55%);
}

.iot-product__atmosphere--dms {
    background:
        radial-gradient(ellipse at 15% 60%, rgba(81, 112, 255, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 55%);
}

.iot-product__bleed > .container {
    position: relative;
    z-index: 1;
}

/* Header — centered, like SaaS Factory */
.iot-product__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-5);
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: var(--space-10);
}

.iot-product__title {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    font-weight: var(--fw-extrabold);
    letter-spacing: var(--tracking-tight);
    line-height: 1.05;
    color: var(--text-primary);
    margin: 0;
}

.iot-product__name {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.iot-product__tagline {
    font-size: clamp(1.3rem, 3.2vw, 2.4rem);
    font-weight: var(--fw-extrabold);
    letter-spacing: -0.02em;
    padding-bottom: 0.15em;
}

.iot-product__desc {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    max-width: 52ch;
    margin: 0 auto;
}

/* Feature list — 1 col mobile, 2 col tablet+ */
.iot-product__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3) var(--space-8);
    width: 100%;
    text-align: left;
}

.iot-product__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.iot-product__feature svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
    opacity: 0.75;
}

[data-theme="dark"] .iot-product__feature svg {
    color: #b820e6;
    opacity: 0.85;
}

.iot-product__feature div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.iot-product__feature strong {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
}

.iot-product__feature span {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* Device wrapper */
.iot-product__device {
    width: 100%;
    margin-block: var(--space-10) var(--space-8);
}

/* MacBook SVG frame — fill container width */
.iot-product__macbook {
    max-width: 100%;
}

/* iPad SVG frame — fill container width */
.iot-product__ipad {
    max-width: 100%;
}

/* iPhone SVG frame — centered, portrait */
.iot-product__device--phone {
    display: flex;
    justify-content: center;
}

.iot-product__iphone {
    max-width: 300px;
}

@media (min-width: 640px) {
    .iot-product__iphone {
        max-width: 340px;
    }
}

/* Browser — fill container width */
.iot-product__browser {
    max-width: 100%;
}

/* CTA */
.iot-product__cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2);
}

/* ── Media wrapper inside device-mockup__content ── */
.iot-product__media {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ── Video inside device screens ── */
.iot-product__video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Placeholder shown when no video file ── */
.iot-product__ph {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    overflow: hidden;
}

.iot-product__ph--vision {
    background: var(--bg-secondary);
}

[data-theme="dark"] .iot-product__ph--vision {
    background: #0a0a1f;
}

.iot-product__ph--mobile {
    background: var(--bg-primary);
}

[data-theme="dark"] .iot-product__ph--mobile {
    background: #0d0920;
}

.iot-product__ph--dms {
    background: var(--bg-secondary);
}

[data-theme="dark"] .iot-product__ph--dms {
    background: #050518;
}

.iot-product__ph-glow {
    position: absolute;
    border-radius: var(--radius-full);
    pointer-events: none;
}

.iot-product__ph--vision .iot-product__ph-glow--a {
    width: 60%;
    height: 80%;
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.12) 0%, transparent 70%);
}

.iot-product__ph--vision .iot-product__ph-glow--b {
    width: 60%;
    height: 80%;
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(206, 50, 255, 0.1) 0%, transparent 70%);
}

.iot-product__ph--mobile .iot-product__ph-glow--a {
    width: 70%;
    height: 70%;
    top: -15%;
    right: -15%;
    background: radial-gradient(circle, rgba(206, 50, 255, 0.13) 0%, transparent 70%);
}

.iot-product__ph--mobile .iot-product__ph-glow--b {
    width: 60%;
    height: 60%;
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 62, 137, 0.1) 0%, transparent 70%);
}

.iot-product__ph--dms .iot-product__ph-glow--a {
    width: 55%;
    height: 75%;
    top: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.12) 0%, transparent 70%);
}

.iot-product__ph--dms .iot-product__ph-glow--b {
    width: 55%;
    height: 75%;
    bottom: -15%;
    right: -5%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
}

.iot-product__ph-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    text-align: center;
    padding-inline: var(--space-4);
}

.iot-product__ph-badge {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.iot-product__ph-text {
    font-size: clamp(1.4rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0;
}


/* ══════════════════════════════════════════════════════════
   6. ENGINE — magIA + Seguridad de datos (always dark)
   ══════════════════════════════════════════════════════════ */

.iot-engine {
    padding: 0;
    overflow: visible;
}

.iot-engine__bleed {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #060610;
    padding-block: var(--space-24);
    overflow: hidden;
}

.iot-engine__glow {
    position: absolute;
    border-radius: var(--radius-full);
    pointer-events: none;
}

.iot-engine__glow--a {
    width: 60vw;
    height: 60vw;
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.1) 0%, transparent 65%);
}

.iot-engine__glow--b {
    width: 50vw;
    height: 50vw;
    bottom: -15%;
    right: -8%;
    background: radial-gradient(circle, rgba(206, 50, 255, 0.08) 0%, transparent 65%);
}

/* Header badge + title */
.iot-engine__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-16);
}

.iot-engine__header .badge {
    align-self: center;
}

.iot-engine__title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fafafa;
    margin: 0;
}

.iot-engine__desc {
    font-size: var(--text-base);
    color: rgba(250, 250, 250, 0.5);
    line-height: 1.65;
    margin: 0;
}

/* magIA — protagonista sin tarjeta */
.iot-engine__magia {
    text-align: center;
    margin-bottom: var(--space-20);
}

.iot-engine__magia-word {
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    padding-bottom: 0.15em;
    background: linear-gradient(135deg, #CE32FF 0%, #FF3E89 55%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 var(--space-6);
}

.iot-engine__magia-word em {
    font-style: italic;
}

.iot-engine__magia-sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(250, 250, 250, 0.5);
    line-height: 1.6;
    max-width: 42ch;
    margin: 0 auto var(--space-6);
}

.iot-engine__magia-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.35);
}

.iot-engine__magia-products span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.iot-engine__magia-products svg {
    opacity: 0.5;
}

.iot-engine__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(250, 250, 250, 0.2);
    flex-shrink: 0;
}

/* Divisor entre magIA y seguridad */
.iot-engine__security {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--space-16);
}

.iot-engine__sec-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(206, 50, 255, 0.6);
    margin: 0 0 var(--space-12);
}

.iot-engine__sec-eyebrow svg {
    color: rgba(206, 50, 255, 0.55);
}

/* Pillars — grid limpio, sin fondo */
.iot-engine__pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 860px;
}

.iot-engine__pillar {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
}

.iot-engine__pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    color: rgba(206, 50, 255, 0.6);
}

.iot-engine__pillar strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: rgba(250, 250, 250, 0.88);
    margin-bottom: 0.3rem;
}

.iot-engine__pillar span {
    font-size: var(--text-sm);
    color: rgba(250, 250, 250, 0.38);
    line-height: 1.6;
}

/* Tablet+ */
@media (min-width: 640px) {
    .iot-engine__pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-10) var(--space-12);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .iot-engine__magia-word {
        font-size: clamp(10rem, 20vw, 18rem);
    }
}

/* ══════════════════════════════════════════════════════════
   7. PROOF — Estadísticas + CTA final (dark)
   ══════════════════════════════════════════════════════════ */

.iot-proof {
    padding: 0;
    overflow: visible;
}

.iot-proof__bleed {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--bg-secondary);
    padding-block: var(--space-20);
    overflow: hidden;
}

.iot-proof__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 30% 50%, color-mix(in srgb, #CE32FF 5%, transparent) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, color-mix(in srgb, #5170FF 4%, transparent) 0%, transparent 55%);
}

.iot-proof__bleed > .container {
    position: relative;
    z-index: 3;
}

.iot-proof__intro {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.15;
    text-align: center;
    color: var(--text-primary);
    margin: 0 auto var(--space-16);
    max-width: 20ch;
}

.iot-proof__bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
}

.iot-proof__sep {
    display: none;
    width: 1px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(to bottom,
        transparent,
        var(--border-default) 30%,
        var(--border-default) 70%,
        transparent);
}

.iot-proof__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2);
    flex: 1;
}

.iot-proof__num {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
    line-height: 1;
}

.iot-counter {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    display: inline-block;
    padding-bottom: 0.1em;
}

.iot-proof__unit {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.iot-proof__desc {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    letter-spacing: var(--tracking-wide);
}

.iot-proof__magia {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    display: inline-block;
    padding-bottom: 0.1em;
}

.iot-proof__magia em {
    font-style: italic;
}

.iot-proof__cta {
    margin-top: var(--space-16);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    text-align: center;
}

.iot-proof__cta-text {
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
    max-width: 28ch;
}

.iot-proof__cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (min-width: 640px) {

    .iot-hero__line {
        font-size: clamp(5rem, 16vw, 9.5rem);
    }

    .iot-statement__pillars {
        grid-template-columns: repeat(3, 1fr);
    }

    .iot-statement__pillar {
        padding: var(--space-8) var(--space-8) var(--space-8) 0;
        border-bottom: none;
        border-right: 1px solid var(--border-default);
    }

    .iot-statement__pillar:last-child {
        border-right: none;
    }

    .iot-product__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .iot-proof__bar {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .iot-proof__sep {
        display: block;
    }

    .iot-proof__stat {
        padding-inline: var(--space-8);
    }

    .iot-proof__cta-actions {
        flex-direction: row;
    }

}

@media (min-width: 1024px) {

    .iot-hero__line {
        font-size: clamp(6rem, 12vw, 10rem);
    }

    .iot-hero__sub {
        font-size: var(--text-xl);
    }

}
