/* Product Page Specific - Apple Style */

body.product-page {
    background-color: var(--color-bg); /* Dark Mode Focus */
}

/* Fix anchor scrolling behind fixed headers */
section[id], #specs {
    scroll-margin-top: 160px;
}

/* Sub-nav */
.product-nav {
    position: fixed;
    top: 90px; /* Below main nav */
    width: 100%;
    padding: 1rem 4rem;
    background-color: rgba(10, 10, 10, 0.65);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-nav.scrolled {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.product-title {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #FFFFFF, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s;
}

.product-actions {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.product-actions .link {
    color: #bbbbbb;
    text-transform: capitalize;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-decoration: none;
}

.product-actions .link:hover {
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--color-text);
    color: var(--color-bg);
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background-color: #eeeeee;
}

.btn-green {
    background-color: var(--color-green);
    color: #000;
}

.btn-green:hover {
    background-color: #00cc6a;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* Prod Hero */
.prod-hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 220px; /* Increased to avoid main nav and product nav overlap */
    padding-bottom: 5rem;
    overflow: hidden;
}

/* Eagle Dark Hero — Pure black product-shot style */
.eagle-hero-dark {
    background: #000;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 0;
    overflow: hidden;
}

/* Eagle Hero Product — Centered Product Shot */
.eagle-hero-product-wrapper {
    width: 100%;
    max-width: 900px;
    margin: -2rem auto 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eagle-hero-product-img {
    width: 100%;
    max-height: 65vh;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: brightness(0.4);
    animation: eagleProductReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    /* Blend the white/light background of the PNG into the dark hero */
    mix-blend-mode: lighten;
}

@keyframes eagleProductReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
        filter: brightness(0.4);
    }
    40% {
        opacity: 1;
        filter: brightness(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

/* Subtle ambient glow beneath the product */
.eagle-hero-product-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: glowFadeIn 2.5s ease 1s forwards;
}

@keyframes glowFadeIn {
    to { opacity: 1; }
}

.prod-hero-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.prod-massive-text {
    font-size: clamp(4.5rem, 12vw, 9rem);
    line-height: 0.9;
    background: linear-gradient(180deg, #FFFFFF 0%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

.prod-subtitle {
    font-size: clamp(0.8rem, 1.5vw, 1.15rem);
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 0.75rem;
    display: inline;
    background: linear-gradient(
        120deg,
        #ffffff 0%,
        #ffffff 35%,
        var(--color-green) 50%,
        #ffffff 65%,
        #ffffff 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glassShimmer 5s ease-in-out infinite;
}

.prod-hero-banner {
    width: calc(100% - 8rem);
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    display: block;
    margin-top: 2rem;
    z-index: 1;
}

/* Statement Sections */
.prod-statement {
    padding: 8rem 4rem;
    display: flex;
    justify-content: center;
}

.prod-statement .container {
    max-width: 1000px;
    text-align: center;
}

.apple-statement {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.apple-substatement {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--color-text-dim);
    line-height: 1.4;
}

/* ========== EAGLE CAPABILITIES SHOWCASE ========== */
.eagle-capabilities-showcase {
    padding: 0 4rem 8rem;
    background: #000;
}

.capabilities-showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.capabilities-showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0;
    color: #fff;
    text-align: left;
    margin-bottom: 2rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.cap-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4 / 5;
}

.cap-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s ease;
}

.cap-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* Bottom label band */
.cap-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(0, 255, 136, 0);
    transition: border-color 0.4s ease, background 0.3s ease;
}

.cap-card:hover .cap-label {
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    background: rgba(0, 0, 0, 0.96);
}

.cap-label-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #1a1a1a;
    transition: color 0.3s ease, text-shadow 0.4s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cap-label-text.revealed {
    color: var(--color-green);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.2);
}

.cap-label-text.scrambling {
    color: rgba(0, 255, 136, 0.4);
}

/* Full Width Image Section */
.prod-full-width-image {
    width: 100%;
    padding: 0 4rem;
    box-sizing: border-box;
    margin-bottom: 0;
}

.prod-full-width-image .prod-image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.prod-full-width-image .prod-image-frame img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}

/* Quick Facts Section */
.prod-quick-facts {
    padding: 8rem 4rem;
}

.prod-quick-facts .qf-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prod-quick-facts .qf-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #fff;
}

.qf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qf-list li {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.qf-list li .qf-bullet {
    position: absolute;
    left: 0;
    color: #00ff88;
}

.qf-placeholder {
    width: 100%;
    height: 500px;
    border: 2px dashed #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
}

.qf-placeholder p {
    color: #555;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* The Tech Section Header */
.tech-header {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 4rem;
}

.tech-header h1 {
    font-size: clamp(4rem, 8vw, 6rem);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 0;
}

/* Sticky Layout */
.prod-sticky-section {
    padding: 8rem 4rem;
}

.sticky-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 200px;
    height: fit-content;
}

.sticky-sidebar h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.sticky-heading {
    text-transform: uppercase;
}

.capabilities-heading {
    margin-bottom: 3rem;
}

.stat-heading {
    font-size: 2rem;
}

.threat-list {
    list-style: none;
    margin-top: 50vh; /* space it out for scroll feel */
    margin-bottom: 50vh;
}

.threat-list li {
    margin-bottom: 8rem;
}

.threat-list h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.threat-list p {
    font-size: 1.25rem;
}

/* Bento Grids */
.prod-capabilities {
    padding: 4rem 4rem 8rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-card {
    background-color: var(--color-surface);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Text at bottom */
    transition: transform 0.4s;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: scale(1.02);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    z-index: 2;
}

.bento-card p {
    z-index: 2;
}

/* Specs Table */
.spec-table-wrapper {
    margin-top: 4rem;
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.spec-table th, .spec-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.25rem;
}

.spec-table th {
    color: var(--color-text-dim);
    font-weight: 600;
}

/* Animations added to base */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Feature Showcase */
.prod-feature-showcase {
    padding: 4rem 4rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 10rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: cover;
    display: block;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.feature-text p {
    font-size: 1.25rem;
    color: var(--color-text-dim);
    line-height: 1.5;
}

/* Radar Wave Text Effect */
.radar-wave-text {
    background: linear-gradient(90deg, #444 0%, #00ff88 30%, #aaffdd 50%, #00ff88 70%, #444 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: radarWave 4s linear infinite;
}

@keyframes radarWave {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* ========== EAGLE INFO SPEC SHEET ========== */
.eagle-info-sheet {
    padding: 6rem 4rem;
    background: transparent;
}

.eagle-info-sheet.info-sheet-continuation {
    padding-top: 0;
}

.info-sheet-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Info Cards — Light Background removed to match main black background */
.info-card {
    background: transparent;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1.5rem 2.5rem;
}

/* Title styling */
.info-card-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.75rem;
}

.info-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.info-card-title-light {
    color: #fff;
}

.info-card-desc {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
    font-weight: 400;
}

.info-card-desc strong {
    font-weight: 700;
    color: #fff;
}

/* Text area in top-left */
.info-card-text {
    grid-column: 1;
    grid-row: 1;
}

/* Image area — spans right side */
.info-card-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-visual img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* List in bottom-left */
.info-card-list {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
}

.info-card-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-card-list ul li {
    font-size: 0.88rem;
    color: #ccc;
    padding: 0.65rem 0;
    line-height: 1.4;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.01em;
}

.info-card-list ul li:last-child {
    border-bottom: none;
}

.info-card-list ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Standard Accessories — specific layout override */
.info-card-accessories {
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto;
    padding: 2.5rem 3rem 2rem;
}

.info-card-accessories .info-card-text {
    grid-column: 1;
    grid-row: 1;
}

.info-card-accessories .info-card-visual {
    grid-column: 1;
    grid-row: 2;
}

.info-card-accessories .info-card-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.info-card-accessories .info-card-visual img:hover {
    transform: scale(1.02);
}

.info-card-accessories .info-card-list {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    background: transparent;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-card-accessories .info-card-list::before {
    content: 'INCLUDED IN KIT';
    display: block;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Rugged section — reflow: text left, specs left, image right */
.info-card-rugged {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
}

.info-card-rugged .info-card-left-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-rugged .info-card-visual-rugged {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-rugged .info-card-visual-rugged img {
    max-width: 320px;
    max-height: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Spec items (icon + text rows) */
.info-card-specs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 400;
}

.spec-icon {
    font-size: 1rem;
    width: 1.4rem;
    flex-shrink: 0;
    text-align: center;
}

/* Dark variant spec items */
.info-card-specs-dark .spec-item {
    color: #ccc;
}

/* Row of two half-cards */
.info-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Dark half-cards */
.info-card-dark {
    background: linear-gradient(145deg, #1a1a1a, #252525);
    border: 1px solid rgba(255,255,255,0.06);
}

.info-card-half {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Note text */
.info-card-note {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Carrying section layout: list on left, image on right */
.info-card-carry-layout {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.info-card-carry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.info-card-carry-list li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
    font-weight: 500;
}

.info-card-carry-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c43232;
    font-weight: 700;
}

.info-card-carry-img {
    flex: 0 0 140px;
}

.info-card-carry-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ========== BOTTOM BADGE BAR — ELEVATED CTA ========== */
.info-badge-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 40%, #111 100%);
    border-radius: 20px;
    padding: 3rem 2rem 2.5rem;
    border: 1px solid rgba(196, 50, 50, 0.15);
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.info-badge-bar::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c43232 30%, #ff4444 50%, #c43232 70%, transparent);
    opacity: 0.6;
}

.info-badge-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(196, 50, 50, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.info-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: default;
}

.info-badge:hover {
    background: rgba(196, 50, 50, 0.06);
    transform: translateY(-4px);
}

.info-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.info-badge-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 50, 50, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-badge:hover .info-badge-icon::before {
    opacity: 1;
}

.info-badge-icon svg {
    width: 100%;
    height: 100%;
}

.info-badge-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.info-badge-punchline {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    color: #777;
    line-height: 1.45;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.info-badge:hover .info-badge-punchline {
    color: #aaa;
}

/* CTA Row under badge bar */
.info-cta-row {
    margin-top: 2rem;
    text-align: center;
    position: relative;
}

.info-cta-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.info-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #888;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

.info-cta-text strong {
    color: #fff;
    font-weight: 600;
}

.info-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #c43232 0%, #8b1a1a 100%);
    color: #fff;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(196, 50, 50, 0.4);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.info-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(196, 50, 50, 0.35), 0 0 60px rgba(196, 50, 50, 0.1);
    border-color: rgba(196, 50, 50, 0.7);
}

.info-cta-btn:hover::before {
    opacity: 1;
}

.info-cta-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.info-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ========== ELECTRONIC WARFARE CTA CONSOLE ========== */
.ew-cta-console {
    position: relative;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-top: 2.5rem;
    background: linear-gradient(160deg, #050a05 0%, #0a120a 30%, #060d06 60%, #030803 100%);
    border: 1px solid rgba(0, 255, 136, 0.15);
    overflow: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4' fill='%2300ff88' opacity='0.8'/%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%2300ff88' stroke-width='1' opacity='0.4'%3E%3Canimate attributeName='r' values='8%3B12%3B8' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='2' fill='white'/%3E%3C/svg%3E") 12 12, crosshair;
}

/* Product image showcase inside EW console */
.ew-product-showcase {
    position: relative;
    z-index: 3;
    max-width: 550px;
    margin: 1rem auto 1.5rem;
    text-align: center;
}

.ew-product-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    mix-blend-mode: lighten;
    filter: brightness(0.95) drop-shadow(0 0 30px rgba(0, 255, 136, 0.12));
    transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.ew-product-img:hover {
    filter: brightness(1.05) drop-shadow(0 0 40px rgba(0, 255, 136, 0.2));
    transform: scale(1.02);
}

.ew-product-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Grid overlay */
.ew-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Scanning line */
.ew-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.4) 20%, rgba(0, 255, 136, 0.8) 50%, rgba(0, 255, 136, 0.4) 80%, transparent 100%);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.1);
    z-index: 1;
    pointer-events: none;
    animation: ewScanDown 4s linear infinite;
}

@keyframes ewScanDown {
    0% { top: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Radar ping */
.ew-radar-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.15);
    z-index: 0;
    pointer-events: none;
    animation: ewRadarPing 3s ease-out infinite;
}

@keyframes ewRadarPing {
    0% { width: 0; height: 0; opacity: 0.6; border-width: 2px; }
    100% { width: 600px; height: 600px; opacity: 0; border-width: 1px; }
}

/* Signal interference flicker */
.ew-interference {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 136, 0.01) 2px,
        rgba(0, 255, 136, 0.01) 4px
    );
    pointer-events: none;
    z-index: 1;
    animation: ewInterference 0.15s infinite steps(3);
}

@keyframes ewInterference {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

/* HUD Corner brackets */
.ew-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
}

.ew-corner-tl {
    top: 12px; left: 12px;
    border-top: 2px solid rgba(0, 255, 136, 0.5);
    border-left: 2px solid rgba(0, 255, 136, 0.5);
}

.ew-corner-tr {
    top: 12px; right: 12px;
    border-top: 2px solid rgba(0, 255, 136, 0.5);
    border-right: 2px solid rgba(0, 255, 136, 0.5);
}

.ew-corner-bl {
    bottom: 12px; left: 12px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.5);
    border-left: 2px solid rgba(0, 255, 136, 0.5);
}

.ew-corner-br {
    bottom: 12px; right: 12px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.5);
    border-right: 2px solid rgba(0, 255, 136, 0.5);
}

/* Data readout strips */
.ew-data-strip {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
    z-index: 3;
    padding: 0.5rem 0;
}

.ew-data-strip span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
    animation: ewDataFlicker 3s ease-in-out infinite;
}

.ew-data-strip span:nth-child(2) { animation-delay: 0.3s; }
.ew-data-strip span:nth-child(3) { animation-delay: 0.6s; }
.ew-data-strip span:nth-child(4) { animation-delay: 0.9s; }
.ew-data-strip span:nth-child(5) { animation-delay: 1.2s; }

@keyframes ewDataFlicker {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; color: rgba(0, 255, 136, 0.8); }
}

.ew-data-strip-top {
    border-bottom: 1px solid rgba(0, 255, 136, 0.08);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.ew-data-strip-bottom {
    border-top: 1px solid rgba(0, 255, 136, 0.08);
    margin-top: 1.5rem;
    padding-top: 1rem;
}

/* Signal icon */
.ew-signal-icon {
    display: none;
}

.ew-signal-icon svg {
    width: 100%;
    height: 100%;
}

/* Main content */
.ew-cta-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Headline */
.ew-cta-headline {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
    animation: ewHeadlineGlitch 8s ease-in-out infinite;
}

.ew-cta-headline span {
    background: linear-gradient(90deg, #00ff88, #00cc6a, #00ff88);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ewShimmer 3s linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.4));
}

@keyframes ewShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes ewHeadlineGlitch {
    0%, 93%, 100% { transform: none; opacity: 1; }
    94% { transform: translateX(-3px) skewX(-1deg); opacity: 0.85; }
    95% { transform: translateX(3px) skewX(1deg); opacity: 0.9; }
    96% { transform: none; opacity: 1; }
}

/* Subtext */
.ew-cta-subtext {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #888;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.ew-highlight {
    color: #00ff88;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
    position: relative;
}

.ew-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: ewUnderlinePulse 2s ease-in-out infinite;
}

@keyframes ewUnderlinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Two-column CTA split */
.ew-cta-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 255, 136, 0.02) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 255, 136, 0.03);
    text-align: left;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ew-cta-split::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.6), transparent);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.ew-cta-split-text {
    border-left: 2px solid rgba(0, 255, 136, 0.3);
    padding-left: 1.5rem;
}

.ew-cta-split-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #ddd;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.ew-cta-split-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

.ew-cta-split-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ew-cta-secure {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
}

/* CTA Button — Neon warfare style */
.ew-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border: 1.5px solid rgba(0, 255, 136, 0.6);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15), inset 0 0 10px rgba(0, 255, 136, 0.1);
    cursor: pointer;
}

.ew-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ew-cta-btn:hover::before {
    transform: translateX(100%);
}

.ew-cta-btn::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 6px;
    background: transparent;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2), inset 0 0 15px rgba(0, 255, 136, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ew-cta-btn:hover {
    border-color: #00ff88;
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.3);
    background: #00ff88;
    transform: translateY(-2px);
    cursor: pointer;
}

.ew-cta-btn:hover::after {
    opacity: 1;
}

.ew-btn-text {
    position: relative;
    z-index: 2;
}

.ew-btn-arrow {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.ew-btn-arrow svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.ew-cta-btn:hover .ew-btn-arrow svg {
    transform: translateX(6px);
}

/* Radar pulse ring behind button */
.ew-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 4px;
    animation: ewBtnPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes ewBtnPulse {
    0% { width: 100%; height: 100%; opacity: 0.5; }
    100% { width: 140%; height: 200%; opacity: 0; }
}

/* ========== EW LEAD CAPTURE MODAL ========== */
.ew-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4' fill='%2300ff88' opacity='0.8'/%3E%3Ccircle cx='12' cy='12' r='2' fill='white'/%3E%3C/svg%3E") 12 12, default;
}

.ew-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ew-modal {
    position: relative;
    width: 100%;
    max-width: 680px;
    max-height: 95vh;
    overflow-y: auto;
    background: #000;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ew-modal-overlay.active .ew-modal {
    transform: translateY(0) scale(1);
}

/* Scrollbar styling */
.ew-modal::-webkit-scrollbar { width: 4px; }
.ew-modal::-webkit-scrollbar-track { background: transparent; }
.ew-modal::-webkit-scrollbar-thumb { background: rgba(0, 255, 136, 0.2); border-radius: 2px; }

/* Close button */
.ew-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 6px;
    color: #00ff88;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 10;
    transition: all 0.3s ease;
}

.ew-modal-close:hover {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.5);
    transform: rotate(90deg);
}

.ew-modal-close svg { width: 100%; height: 100%; }

/* Modal header */
.ew-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.ew-modal-header .ew-data-strip {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.ew-modal-main-text {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    max-width: 580px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Form */
.ew-modal-form { position: relative; z-index: 3; }

.ew-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.ew-form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.ew-form-full { margin-bottom: 0.85rem; }

.ew-form-group label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 255, 136, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ew-required { color: #00ff88; font-weight: 700; }

.ew-optional-tag {
    font-size: 0.55rem;
    background: rgba(0, 255, 136, 0.08);
    color: rgba(0, 255, 136, 0.5);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    border: 1px solid rgba(0, 255, 136, 0.12);
    letter-spacing: 1px;
}

.ew-form-group input,
.ew-form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #ddd;
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.ew-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.ew-form-group input::placeholder,
.ew-form-group textarea::placeholder { color: #444; font-style: italic; }

.ew-form-group input:focus,
.ew-form-group textarea:focus {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.06);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.08), inset 0 0 10px rgba(0, 255, 136, 0.03);
}

.ew-linkedin-hint {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    font-style: italic;
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* Form actions */
.ew-form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 255, 136, 0.08);
}

.ew-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    cursor: pointer;
}

/* Success State */
.ew-modal-success {
    display: none;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}

.ew-modal-success.active {
    display: block;
    animation: ewSuccessFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ewSuccessFadeIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.ew-success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.4));
}

.ew-success-icon svg { width: 100%; height: 100%; }

.ew-success-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ew-success-title span {
    background: linear-gradient(90deg, #00ff88, #00cc6a, #00ff88);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ewShimmer 3s linear infinite;
}

.ew-success-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* ========== THREAT LANDSCAPE ========== */
.info-card-threat {
    display: flex;
    flex-direction: column;
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    flex: 1;
}

.threat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.threat-icon {
    width: 60px;
    height: 45px;
    color: #c43232;
    display: flex;
    align-items: center;
    justify-content: center;
}

.threat-icon svg {
    width: 100%;
    height: 100%;
}

.threat-label {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.3;
}

/* ========== TECHNICAL HIGHLIGHTS ========== */
.info-card-tech {
    display: flex;
    flex-direction: column;
}

.tech-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    flex: 1;
    justify-content: center;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.tech-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-item span {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.3;
}

/* ========== SYSTEM WEIGHT ========== */
.info-card-weight {
    padding: 2.5rem 3rem;
}

.weight-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.weight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.weight-silhouette {
    width: 80px;
    height: 100px;
    color: #fff;
    flex-shrink: 0;
}

.weight-silhouette svg {
    width: 100%;
    height: 100%;
}

.weight-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.weight-version {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    line-height: 1.3;
}

.weight-version small {
    font-size: 0.65rem;
    font-weight: 600;
    color: #888;
}

.weight-value {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.weight-divider {
    width: 1px;
    height: 100px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ========== DETAIL STATS ROW ========== */
.prod-detail-stats {
    padding-top: 0;
}

.prod-detail-stats .bento-grid {
    grid-template-columns: repeat(3, 1fr);
}

.bento-card.dark {
    background: linear-gradient(145deg, #1a1a1a, #252525);
    border: 1px solid rgba(255,255,255,0.06);
}

.bento-card.dark h3 {
    color: #fff;
}

.bento-card.dark p {
    color: #aaa;
}

/* ========== SPECS SECTION ========== */
.prod-specs {
    padding: 8rem 4rem;
}

.prod-specs .container {
    max-width: 1000px;
}

.prod-specs .apple-statement {
    text-align: left;
    font-size: 3rem;
}

/* ========== OUTRO / TACTICAL SECTION ========== */
.prod-outro {
    border-top: 1px solid #222;
    padding: 8rem 4rem;
}

.prod-outro .container {
    max-width: 1000px;
    text-align: center;
}

.prod-outro .outro-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.prod-outro .outro-subtext {
    font-size: 1.25rem;
}

.prod-outro .outro-desc {
    color: var(--color-text-dim);
    margin-top: 2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prod-outro .outro-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

@media (max-width: 1024px) {
    .prod-statement,
    .prod-quick-facts,
    .prod-sticky-section,
    .prod-capabilities,
    .prod-feature-showcase,
    .prod-specs,
    .prod-outro,
    .eagle-capabilities-showcase {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .cap-card {
        aspect-ratio: 1 / 1;
    }

    .prod-full-width-image {
        padding: 0 2rem;
    }

    .prod-quick-facts .qf-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sticky-container {
        grid-template-columns: 1fr;
    }
    .sticky-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 4rem;
    }
    .threat-list {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto;
    }
    .bento-card.span-2 {
        grid-column: span 1;
    }
    .bento-card {
        padding: 2rem;
        min-height: 350px;
    }
    
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 6rem;
        text-align: center;
    }
    
    .feature-text h3 {
        font-size: 2rem;
    }

    /* Info Sheet Responsive */
    .eagle-info-sheet {
        padding: 3rem 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card-full,
    .info-card-full:first-child,
    .info-card-rugged {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .info-card-full:first-child .info-card-text,
    .info-card-full:first-child .info-card-visual,
    .info-card-full:first-child .info-card-list,
    .info-card-rugged .info-card-text,
    .info-card-rugged .info-card-specs,
    .info-card-rugged .info-card-visual-rugged {
        grid-column: 1;
        grid-row: auto;
    }

    .info-card-row {
        grid-template-columns: 1fr;
    }

    .info-badge-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1rem;
    }

    .info-card-carry-layout {
        flex-direction: column;
    }

    .info-card-carry-img {
        flex: 0 0 auto;
        max-width: 180px;
    }

    .threat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .weight-row {
        flex-direction: column;
        gap: 2rem;
    }

    .weight-divider {
        width: 80%;
        height: 1px;
    }

    .weight-value {
        font-size: 2rem;
    }

    .prod-detail-stats .bento-grid {
        grid-template-columns: 1fr !important;
    }

    /* EW Console responsive */
    .ew-cta-console {
        padding: 2.5rem 1.5rem;
    }

    .ew-cta-headline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: 2px;
    }

    .ew-data-strip {
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }

    .ew-data-strip span {
        font-size: 0.5rem;
    }

    .ew-signal-icon {
        width: 70px;
        height: 70px;
    }

    .ew-cta-btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .ew-cta-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem;
    }

    .ew-cta-split-text {
        border-left: none;
        padding-left: 0;
        border-bottom: 1px solid rgba(0, 255, 136, 0.08);
        padding-bottom: 1.5rem;
    }

    .ew-product-showcase {
        max-width: 80%;
    }

    /* Modal responsive */
    .ew-modal {
        padding: 2rem 1.5rem;
        max-height: 95vh;
    }

    .ew-form-row {
        grid-template-columns: 1fr;
    }

    .ew-modal-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

/* ========== NEXT PRODUCT FOOTER NAVIGATION ========== */
.next-product-section {
    padding: 6rem 4rem;
    background-color: #000;
    position: relative;
    z-index: 5;
}

.next-product-container {
    max-width: 1400px;
    margin: 0 auto;
}

.next-product-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    background: linear-gradient(160deg, #050a10 0%, #08101a 100%);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    padding: 4rem;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Modifier class for Ghost Blue accent */
.next-product-card.ghost-blue-theme {
    border-color: rgba(77, 166, 255, 0.15);
    background: linear-gradient(160deg, #020710 0%, #051020 100%);
}

.next-product-card.ghost-blue-theme .next-eyebrow {
    color: #4da6ff;
    text-shadow: 0 0 10px rgba(77, 166, 255, 0.3);
}

.next-product-card.ghost-blue-theme .next-action-btn {
    border-color: rgba(77, 166, 255, 0.3);
    color: #4da6ff;
}

.next-product-card.ghost-blue-theme:hover {
    border-color: rgba(77, 166, 255, 0.6);
    box-shadow: 0 0 40px rgba(77, 166, 255, 0.15);
}

/* Background Effects */
.next-product-card .ew-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.next-product-card.ghost-blue-theme .ew-grid-overlay {
    background-image: 
        linear-gradient(rgba(77, 166, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 166, 255, 0.015) 1px, transparent 1px);
}

.next-product-card .ew-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    opacity: 0.7;
    pointer-events: none;
    z-index: 2;
    animation: nextScan 6s linear infinite;
}

.next-product-card.ghost-blue-theme .ew-scan-line {
    background: linear-gradient(90deg, transparent, rgba(77, 166, 255, 0.3), transparent);
}

@keyframes nextScan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* High-tech corners */
.next-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(0, 255, 136, 0.4);
    z-index: 3;
    pointer-events: none;
    transition: all 0.3s ease;
}

.next-product-card.ghost-blue-theme .next-corner {
    border-color: rgba(77, 166, 255, 0.4);
}

.next-corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.next-corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.next-corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.next-corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* Content Left */
.next-content-left {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.next-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--color-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.next-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px currentColor;
}

.next-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.next-desc {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Custom interactive arrow button */
.next-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 2.25rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-green);
    background: transparent;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.next-action-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Image Right */
.next-visual-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-img-wrapper {
    position: relative;
    width: 100%;
    max-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-product-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(0.8) contrast(1.1);
    transform: scale(0.95) translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.next-product-card.ghost-blue-theme .next-glow {
    background: radial-gradient(circle, rgba(77, 166, 255, 0.08) 0%, transparent 70%);
}

/* Hover States */
.next-product-card:hover {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
    background: linear-gradient(160deg, #07121b 0%, #0d1a29 100%);
}

.next-product-card:hover .next-title {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.next-product-card.ghost-blue-theme:hover .next-title {
    background: linear-gradient(180deg, #ffffff 0%, #4da6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.next-product-card:hover .next-action-btn {
    background: rgba(0, 255, 136, 0.06);
    border-color: var(--color-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.next-product-card.ghost-blue-theme:hover .next-action-btn {
    background: rgba(77, 166, 255, 0.06);
    border-color: #4da6ff;
    box-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
}

.next-product-card:hover .next-action-btn svg {
    transform: translateX(8px);
}

.next-product-card:hover .next-product-img {
    transform: scale(1.02) translateY(0);
    filter: brightness(1.1) contrast(1.15);
}

.next-product-card:hover .next-glow {
    transform: scale(1.2);
    opacity: 1.5;
}

.next-product-card:hover .next-corner {
    width: 20px;
    height: 20px;
}

/* Telemetry readout for extra premium feel */
.next-telemetry {
    position: absolute;
    bottom: 1.5rem;
    left: 4rem;
    display: flex;
    gap: 2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.next-telemetry span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.next-telemetry span::before {
    content: '[';
}

.next-telemetry span::after {
    content: ']';
}

/* Responsive */
@media (max-width: 991px) {
    .next-product-card {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    
    .next-visual-right {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .next-img-wrapper {
        max-height: 250px;
    }
    
    .next-telemetry {
        display: none;
    }
}

@media (max-width: 575px) {
    .next-product-section {
        padding: 4rem 1.5rem;
    }
    .next-product-card {
        padding: 2rem;
    }
}



