/**
 * Page Metodologia - Styles v4
 * Diseño: hero split, 3D tilt cards, bento grid, ribbon cards
 *
 * @package Agrosoil
 * @subpackage CSS/Pages
 * @since 2.0.0
 */

/* =====================================================
   RESET + GLOBALS
   ===================================================== */
#met-page,
#met-page * {
    font-family: var(--font-primary, 'Poppins', sans-serif);
    box-sizing: border-box;
}

#met-page {
    overflow-x: hidden;
    display: block !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    max-width: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#featured-title {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

#main-content, .site-main, #content-wrap, #site-content,
.site-content, .inner-content-wrap, .page-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* =====================================================
   HERO
   ===================================================== */
.met-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0b1117;
    position: relative;
    overflow: hidden;
    padding: 140px 5% 100px;
}

#met-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.met-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(57,166,222,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0,229,255,0.1) 0%, transparent 50%),
        linear-gradient(180deg, transparent 60%, rgba(11,17,23,0.8) 100%);
    z-index: 2;
}

/* Orbes flotantes */
.met-hero-orbs { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

.met-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(57,166,222,0.12), rgba(0,229,255,0.04) 60%, transparent 80%);
    border: 1px solid rgba(57,166,222,0.08);
    backdrop-filter: blur(2px);
}

.met-orb-1 {
    width: 300px; height: 300px;
    top: -5%; right: -3%;
    animation: metOrbDrift 25s ease-in-out infinite;
}
.met-orb-2 {
    width: 180px; height: 180px;
    bottom: 10%; left: 3%;
    animation: metOrbDrift 20s ease-in-out infinite reverse;
}
.met-orb-3 {
    width: 120px; height: 120px;
    top: 40%; left: 55%;
    animation: metOrbDrift 18s ease-in-out infinite 5s;
}

@keyframes metOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
}

/* Hero inner — split layout */
.met-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.met-hero-text {
    opacity: 0;
    animation: metSlideUp .9s ease-out .2s forwards;
}

.met-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: rgba(0,229,255,0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.met-hero h1 {
    font-size: clamp(36px, 8vw, 48px);
    font-weight: 800;
    color: #fff !important;
    line-height: 1.1;
    margin-bottom: 22px;
}

.met-hero h1 span {
    display: block;
    background: linear-gradient(135deg, #39a6de, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.met-hero-text > p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.7;
    max-width: 750px;
}

/* Hero stat cards */
.met-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    animation: metSlideUp .9s ease-out .5s forwards;
}

.met-hero-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    transition: all .4s cubic-bezier(.16,1,.3,1);
}

.met-hero-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(-8px);
    border-color: rgba(255,255,255,0.15);
}

.met-hero-card[data-accent="cyan"] { border-left: 3px solid rgba(0,229,255,0.6); }
.met-hero-card[data-accent="green"] { border-left: 3px solid rgba(52,199,89,0.6); }
.met-hero-card[data-accent="gold"] { border-left: 3px solid rgba(234,179,8,0.6); }

.met-hero-card-num {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    min-width: 100px;
    line-height: 1;
}

.met-hero-card[data-accent="cyan"] .met-hero-card-num { color: #00e5ff; }
.met-hero-card[data-accent="green"] .met-hero-card-num { color: #34c759; }
.met-hero-card[data-accent="gold"] .met-hero-card-num { color: #eab308; }

.met-hero-card-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Scroll cue */
.met-scroll-cue {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: metPulseDown 2.5s infinite;
}

.met-scroll-cue span {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.met-scroll-cue svg {
    width: 24px; height: 24px;
    stroke: rgba(255,255,255,0.4);
}

@keyframes metSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes metPulseDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: .6; }
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.met-section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}

.met-section-head h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: #1a2e1a;
    margin-bottom: 14px;
    line-height: 1.1;
}

.met-section-head h2 span {
    background: linear-gradient(135deg, #5a9e0a, #80bc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.met-section-head p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #64748b;
    line-height: 1.7;
}

.met-section-head-light h2 { color: #fff !important; }
.met-section-head-light h2 span {
    background: linear-gradient(135deg, #9cd033, #c5e96a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.met-section-head-light p { color: rgba(255,255,255,0.7) !important; }

/* Pill badges */
.met-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(128,188,0,0.08);
    border: 1px solid rgba(128,188,0,0.18);
    border-radius: 100px;
    color: #5a9e0a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.met-pill-light {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: rgba(156,208,51,0.9);
}

/* =====================================================
   PROCESO — Bento Grid
   ===================================================== */
.met-process {
    padding: 120px 5% 100px;
    background: #f6f7f0;
}

/* ---- Bento container ---- */

.met-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
}

.met-bento-wide { grid-column: span 2; }

/* ---- Step cards ---- */

.met-tl-step {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px 32px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Colored bottom accent */
.met-tl-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sc);
    opacity: 0.65;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.met-tl-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
}

.met-tl-step:hover::after {
    opacity: 1;
    height: 5px;
}

/* Big watermark number */
.met-bento-num {
    position: absolute;
    right: 20px;
    top: -18px;
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: var(--sc);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    letter-spacing: -8px;
    transition: opacity 0.4s ease;
}

.met-tl-step:hover .met-bento-num {
    opacity: 0.12;
}

/* Card inner content */
.met-tl-card {
    position: relative;
    z-index: 1;
}

/* Icon */
.met-tl-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(128,188,0,0.1), rgba(128,188,0,0.04));
    border: 1px solid rgba(128,188,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

.met-tl-icon svg {
    width: 100%;
    height: 100%;
    stroke: #5a9e0a;
}

.met-tl-step:hover .met-tl-icon {
    background: var(--sc);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.met-tl-step:hover .met-tl-icon svg {
    stroke: #fff;
}

/* Card text */
.met-tl-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2e1a !important;
    margin-bottom: 8px;
}

.met-tl-card p {
    font-size: 18px;
    color: #5a6c5a !important;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Tags */
.met-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.met-tags span {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(128,188,0,0.07);
    color: #4a7a08;
    border: 1px solid rgba(128,188,0,0.12);
}

/* =====================================================
   TECNOLOGIA — Alternating Horizontal Panels
   ===================================================== */
.met-tech {
    padding: 120px 5%;
    background: #0a1a10;
    position: relative;
    overflow-x: hidden;
}

.met-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(128,188,0,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 80% 70%, rgba(90,158,10,0.06) 0%, transparent 55%);
}

.met-instruments {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.met-instrument {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(128,188,0,0.08);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Alternate layout direction */
.met-instrument:nth-child(even) {
    grid-template-columns: 1fr 180px;
}

.met-instrument:nth-child(even) .met-instrument-visual {
    order: 2;
}

.met-instrument:hover {
    background: rgba(128,188,0,0.04);
    border-color: rgba(128,188,0,0.18);
    box-shadow: 0 20px 50px rgba(128,188,0,0.08);
    transform: translateY(-6px);
}

/* Visual area with orb glow */
.met-instrument-visual {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.met-instrument-orb {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128,188,0,0.12) 0%, transparent 70%);
    animation: metInstrPulse 4s ease-in-out infinite;
}

@keyframes metInstrPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.met-instrument-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(145deg, #80bc00, #5a9e0a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(128,188,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.met-instrument-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}

.met-instrument:hover .met-instrument-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 12px 40px rgba(128,188,0,0.5);
}

.met-instrument-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 10px;
}

.met-instrument-info p {
    font-size: 18px;
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.7;
    max-width: 500px;
}

/* =====================================================
   CALIDAD — Shield Badges (4 in a row)
   ===================================================== */
.met-quality {
    padding: 120px 5%;
    background: #f6f7f0;
}

.met-shields {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line behind badges */
.met-shields::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 12%;
    right: 12%;
    height: 2px;
    border-top: 2px dashed rgba(128,188,0,0.2);
}

.met-shield {
    text-align: center;
    flex: 1;
    max-width: 220px;
    position: relative;
    z-index: 1;
}

/* Badge circle */
.met-shield-badge {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(128,188,0,0.08), rgba(128,188,0,0.02));
    border: 2px solid rgba(128,188,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    transition: all 0.5s cubic-bezier(.16,1,.3,1);
    position: relative;
}

.met-shield-badge::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(128,188,0,0.1);
    transition: border-color 0.4s ease;
}

.met-shield-badge svg {
    width: 100%;
    height: 100%;
    stroke: #5a9e0a;
    transition: stroke 0.4s ease;
}

.met-shield:hover .met-shield-badge {
    background: linear-gradient(145deg, #80bc00, #5a9e0a);
    border-color: #80bc00;
    box-shadow: 0 8px 30px rgba(128,188,0,0.3);
    transform: translateY(-6px) scale(1.05);
}

.met-shield:hover .met-shield-badge::after {
    border-color: rgba(128,188,0,0.3);
}

.met-shield:hover .met-shield-badge svg {
    stroke: #fff;
}

.met-shield h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 6px;
}

.met-shield p {
    font-size: 18px;
    color: #5a6c5a;
    line-height: 1.5;
}

/* =====================================================
   CTA — Split Layout with Orbital Art
   ===================================================== */
.met-cta {
    padding: 120px 5%;
    background: #0a1a10;
    position: relative;
    overflow-x: hidden;
}

.met-cta-split {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.met-cta-text {
    text-align: left;
}

.met-cta-text h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 16px;
}

.met-cta-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 450px;
}

.met-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #80bc00, #9cd033);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all .4s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 10px 35px rgba(128,188,0,0.3);
}

.met-cta-btn:hover {
    opacity: 0.85;
    color: #fff !important;
}

/* Orbital art decoration */
.met-cta-art {
    position: relative;
    width: 100%;
    height: 300px;
}

.met-cta-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.met-cta-ring-1 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    border: 2px dashed rgba(128,188,0,0.12);
    animation: metRingSpin 30s linear infinite;
}

.met-cta-ring-2 {
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
    border: 2px dashed rgba(128,188,0,0.2);
    animation: metRingSpin 22s linear infinite reverse;
}

.met-cta-ring-3 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border: 2px solid rgba(128,188,0,0.3);
    animation: metRingSpin 15s linear infinite;
}

/* Ring orbit dots */
.met-cta-ring-1::before,
.met-cta-ring-2::before,
.met-cta-ring-3::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #80bc00;
    top: -4px;
    left: 50%;
    margin-left: -4px;
    box-shadow: 0 0 10px rgba(128,188,0,0.5);
}

.met-cta-ring-2::before {
    top: auto;
    bottom: -4px;
    background: #9cd033;
}

.met-cta-ring-3::before {
    left: -4px;
    top: 50%;
    margin-top: -4px;
    margin-left: 0;
    background: #c5e96a;
}

@keyframes metRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Center molecule icon */
.met-cta-molecule {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #80bc00, #5a9e0a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 10px 40px rgba(128,188,0,0.4);
    z-index: 3;
}

.met-cta-molecule svg {
    stroke: #fff;
    width: 100%;
    height: 100%;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .met-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .met-hero-text > p { max-width: 100%; margin: 0 auto; }
    .met-hero-cards { max-width: 450px; margin: 0 auto; }

    /* Bento: 2 columns on tablet */
    .met-bento { grid-template-columns: repeat(2, 1fr); }
    .met-bento-wide { grid-column: span 2; }
    .met-bento-num { font-size: 120px; }

    /* Instruments → smaller visual */
    .met-instrument {
        grid-template-columns: 140px 1fr;
        gap: 30px;
        padding: 32px 36px;
    }
    .met-instrument:nth-child(even) {
        grid-template-columns: 1fr 140px;
    }
    .met-instrument-visual { width: 120px; height: 120px; }
    .met-instrument-icon { width: 64px; height: 64px; padding: 14px; }

    /* Shields */
    .met-shields { gap: 24px; }
    .met-shield-badge { width: 78px; height: 78px; padding: 18px; }

    /* CTA split */
    .met-cta-split { gap: 40px; }
}

@media (max-width: 768px) {
    .met-hero { padding: 110px 5% 80px; }

    .met-process,
    .met-tech,
    .met-quality,
    .met-cta {
        padding: 80px 4%;
    }

    .met-section-head { margin-bottom: 50px; }

    /* Bento → horizontal slider */
    .met-bento {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 10px 4%;
    }
    .met-bento::-webkit-scrollbar { display: none; }
    .met-bento-wide { grid-column: unset; }
    .met-tl-step {
        padding: 28px 24px 24px;
        flex: 0 0 80vw;
        min-width: 80vw;
        scroll-snap-align: start;
    }
    .met-bento-num { font-size: 100px; right: 12px; top: -12px; }
    .met-tl-card h3 { font-size: 16px; }

    /* Instruments → stack vertical */
    .met-instrument,
    .met-instrument:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 24px;
        text-align: center;
    }

    .met-instrument:nth-child(even) .met-instrument-visual {
        order: 0;
    }

    .met-instrument-visual {
        width: 120px;
        height: 120px;
        justify-self: center;
    }

    .met-instrument-icon { width: 64px; height: 64px; padding: 14px; }
    .met-instrument-info p { max-width: 100%; }

    /* Shields → vertical stack on mobile */
    .met-shields {
        flex-wrap: wrap;
        gap: 24px;
        padding: 10px 20px;
        justify-content: center;
    }
    .met-shields::before { display: none; }

    .met-shield {
        flex: 0 0 calc(50% - 12px);
        max-width: none;
    }

    /* Hide dots for shields */
    .met-shields-dots { display: none !important; }

    /* Dots for bento */
    .met-bento-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .met-bento-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: rgba(0,0,0,0.15);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .met-bento-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
    }

    .met-bento-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #6aa300;
    }

    /* CTA → stack */
    .met-cta-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .met-cta-text { text-align: center; }
    .met-cta-text p { max-width: 100%; margin: 0 auto 36px; }

    .met-cta-art { height: 220px; }

    .met-hero-card-num { font-size: 28px; min-width: 80px; }

    .met-orb-1 { width: 200px; height: 200px; }
    .met-orb-3 { display: none; }
}

@media (max-width: 480px) {
    .met-hero h1 { font-size: clamp(28px, 8vw, 36px); }

    .met-hero-card { padding: 16px 20px; gap: 12px; }
    .met-hero-card-num { font-size: 24px; min-width: 65px; }
    .met-hero-card-label { font-size: 12px; }

    /* Bento → tighter on small phones */
    .met-tl-step { padding: 22px 18px 18px; }
    .met-bento-num { font-size: 80px; right: 8px; top: -10px; }
    .met-tl-card h3 { font-size: 15px; }
    .met-tl-card p { font-size: 13px; }
    .met-tl-icon { width: 36px; height: 36px; padding: 8px; border-radius: 10px; }
    .met-tags span { font-size: 10px; padding: 3px 8px; }

    .met-shields { gap: 24px 16px; }
    .met-shield-badge { width: 72px; height: 72px; padding: 16px; }

    .met-cta-art { height: 180px; }
    .met-cta-ring-1 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
    .met-cta-ring-2 { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
}

/* Hidden on desktop */
@media (min-width: 769px) {
    .met-bento-dots {
        display: none;
    }
}
