/* JexMac — homepage layout and sections */

/* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: var(--header-height);
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 60%);
            filter: blur(60px);
            z-index: 0;
            pointer-events: none;
        }

        /* Particle background canvas */
        #particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
        }
        
        .hero-badge {
            display: inline-block;
            font-family: var(--font-tech);
            font-size: 14px;
            color: var(--neon-blue);
            letter-spacing: 6px;
            margin-bottom: 40px;
            padding: 10px 24px;
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 4px;
            background: rgba(0, 240, 255, 0.05);
            text-transform: uppercase;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
        }

        .hero h1 {
            font-family: var(--font-tech);
            font-size: 5.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -2px;
            background: linear-gradient(to right, #fff 30%, var(--neon-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
        }

        .hero p {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin: 0 auto 50px;
            max-width: 800px;
        }

        .hero-btns {
            display: flex;
            gap: 24px;
            justify-content: center;
        }
        
        .btn-large {
            padding: 16px 40px;
            font-size: 16px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0.6;
            animation: bounce 2s infinite;
            z-index: 2;
        }
        .scroll-indicator .mouse {
            width: 24px;
            height: 36px;
            border: 2px solid var(--text-muted);
            border-radius: 12px;
            position: relative;
        }
        .scroll-indicator .mouse::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 6px;
            background: var(--neon-blue);
            border-radius: 2px;
            animation: scrollWheel 2s infinite;
        }
        @keyframes scrollWheel {
            0% { transform: translate(-50%, 0); opacity: 1; }
            100% { transform: translate(-50%, 15px); opacity: 0; }
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
            40% { transform: translate(-50%, -10px); }
            60% { transform: translate(-50%, -5px); }
        }

        /* Nodes Bar */
        .nodes-bar {
            background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.05), transparent);
            border-top: 1px solid rgba(0, 240, 255, 0.1);
            border-bottom: 1px solid rgba(0, 240, 255, 0.1);
            padding: 20px 0;
            text-align: center;
        }
        .nodes-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            font-family: var(--font-tech);
            font-size: 14px;
            color: var(--neon-blue);
            letter-spacing: 1px;
        }
        .nodes-list span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nodes-list span::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neon-blue);
            box-shadow: 0 0 8px var(--neon-blue);
        }

        section {
            padding: 140px 0;
        }

        .section-title {
            text-align: center;
            font-family: var(--font-tech);
            font-size: 3.2rem;
            margin-top: 80px;
            margin-bottom: 80px;
            color: #fff;
            letter-spacing: 2px;
            max-width: 100%;
            overflow-wrap: anywhere;
            word-break: break-word;
        }
        .section-title span {
            color: var(--neon-blue);
        }

        /* Shared image frames */
        .media-frame {
            margin: 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(0, 0, 0, 0.45);
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .media-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .media-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 240, 255, 0.07) 0%,
                transparent 50%,
                rgba(188, 19, 254, 0.06) 100%
            );
            pointer-events: none;
        }

        .media-frame--card {
            aspect-ratio: 16 / 10;
            margin: -50px -40px 28px;
            border-radius: 20px 20px 0 0;
            border-left: none;
            border-right: none;
            border-top: none;
        }

        .media-frame--card img {
            object-position: center center;
        }

        .media-frame--card-portrait img {
            object-position: center 38%;
        }

        .media-frame--hardware {
            width: 400px;
            aspect-ratio: 10 / 7;
            flex-shrink: 0;
        }

        .media-frame--empty {
            background:
                linear-gradient(135deg, rgba(0, 240, 255, 0.04) 0%, transparent 55%),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.03) 0,
                    rgba(255, 255, 255, 0.03) 1px,
                    transparent 1px,
                    transparent 12px
                ),
                rgba(0, 0, 0, 0.55);
        }

        .media-frame--empty::before {
            content: attr(data-image-slot);
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            font-family: var(--font-code);
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.28);
            text-align: center;
            pointer-events: none;
        }

        /* Core Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            padding-top: 0;
            overflow: hidden;
        }

        .feature-card h3 {
            padding: 0 40px;
        }

        .feature-card p {
            padding: 0 40px 50px;
        }
        
        .glass-card {
            background: var(--bg-panel);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 50px 40px;
            transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
            position: relative;
            overflow: hidden;
        }
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-10px);
            border-color: var(--border-glow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
        }
        .glass-card:hover::before {
            opacity: 1;
        }
        .glass-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #fff;
        }
        .glass-card p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Key Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        .stat-item h4 {
            font-family: var(--font-tech);
            font-size: 3.5rem;
            color: var(--neon-blue);
            text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
            margin-bottom: 10px;
        }
        .stat-item p {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
        }

        /* Hardware Specs */
        .hardware-showcase {
            background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 L100 0" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
            border: 1px solid var(--border-glow);
            border-radius: 24px;
            padding: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            box-shadow: inset 0 0 80px rgba(0,0,0,0.6);
        }
        .hw-info h3 {
            font-family: var(--font-tech);
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: #fff;
        }
        .hw-specs {
            list-style: none;
        }
        .hw-specs li {
            font-family: var(--font-code);
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .hw-specs li::before {
            content: '>';
            color: var(--neon-blue);
            font-weight: bold;
        }

        /* Pricing Section */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 48px;
        }
        .tab-btn {
            background: var(--bg-panel);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-muted);
            padding: 12px 36px;
            border-radius: 30px;
            font-family: var(--font-tech);
            font-size: 0.95rem;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.3s;
        }
        .tab-btn.active {
            background: rgba(0, 240, 255, 0.1);
            color: var(--neon-blue);
            border-color: var(--neon-blue);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
        }

        .pricing-container {
            max-width: 1100px;
            margin: 0 auto;
            min-width: 0;
        }

        .pricing-showcase {
            position: relative;
            overflow: hidden;
            padding: 0;
            min-width: 0;
            max-width: 100%;
            border: 1px solid rgba(0, 240, 255, 0.22);
            border-radius: 28px;
            box-shadow:
                0 0 60px rgba(0, 240, 255, 0.12),
                0 30px 80px rgba(0, 0, 0, 0.45),
                inset 0 0 80px rgba(0, 240, 255, 0.03);
        }

        .pricing-showcase:hover {
            transform: none;
        }

        .pricing-showcase__glow {
            position: absolute;
            top: -120px;
            right: -80px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0%, transparent 68%);
            pointer-events: none;
        }

        .pricing-showcase__hero {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
            padding: 64px 56px 56px;
            min-width: 0;
        }

        .pricing-showcase__info,
        .pricing-showcase__price-block {
            min-width: 0;
            max-width: 100%;
        }

        .pricing-badge {
            display: inline-block;
            margin-bottom: 20px;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(0, 240, 255, 0.35);
            background: rgba(0, 240, 255, 0.08);
            color: var(--neon-blue);
            font-family: var(--font-tech);
            font-size: 0.72rem;
            letter-spacing: 0.18em;
        }

        .pricing-plan-title {
            margin: 0 0 16px;
            font-family: var(--font-tech);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            line-height: 1.15;
            color: #fff;
            text-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
        }

        .pricing-plan-desc {
            margin: 0 0 28px;
            max-width: 36em;
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .pricing-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .pricing-specs li {
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.35);
            color: rgba(255, 255, 255, 0.82);
            font-family: var(--font-code);
            font-size: 0.82rem;
            letter-spacing: 0.04em;
            max-width: 100%;
            white-space: normal;
            overflow-wrap: break-word;
            word-break: break-word;
            text-align: center;
        }

        .pricing-showcase__price-block {
            position: relative;
            text-align: center;
            padding: 40px 32px;
            border-radius: 22px;
            border: 1px solid rgba(0, 240, 255, 0.18);
            background:
                linear-gradient(160deg, rgba(0, 240, 255, 0.07) 0%, transparent 55%),
                rgba(0, 0, 0, 0.42);
            overflow: hidden;
        }

        .price-display {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-wrap: wrap;
            gap: 4px;
            margin: 0 0 28px;
            font-family: var(--font-tech);
            line-height: 1;
            max-width: 100%;
        }

        .price-currency {
            margin-top: 0.55em;
            font-size: 2rem;
            color: var(--neon-blue);
            text-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
        }

        .price-value {
            font-size: clamp(4.5rem, 8vw, 6.5rem);
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 35px rgba(0, 240, 255, 0.45);
        }

        .price-period {
            align-self: flex-end;
            margin-bottom: 0.65em;
            margin-left: 6px;
            font-size: 1.25rem;
            color: var(--text-muted);
            text-shadow: none;
        }

        .pricing-cta {
            display: block;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            font-size: 1.05rem;
            letter-spacing: 0.08em;
            white-space: normal;
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .pricing-note {
            margin: 18px 0 0;
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.88rem;
            letter-spacing: 0.03em;
            overflow-wrap: break-word;
            word-break: break-word;
            max-width: 100%;
            line-height: 1.5;
        }

        .pricing-showcase__divider {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 0 56px;
            color: rgba(255, 255, 255, 0.38);
            font-family: var(--font-tech);
            font-size: 0.82rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            min-width: 0;
        }

        .pricing-showcase__divider span {
            flex-shrink: 1;
            min-width: 0;
            max-width: 72%;
            overflow-wrap: break-word;
            word-break: break-word;
            text-align: center;
            line-height: 1.4;
        }

        .pricing-showcase__divider::before,
        .pricing-showcase__divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.25), transparent);
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 32px 40px 44px;
        }

        .addon-card {
            position: relative;
            text-align: left;
            padding: 32px 28px 28px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(0, 0, 0, 0.28);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .addon-card:hover {
            transform: translateY(-4px);
            border-color: rgba(138, 43, 226, 0.35);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(138, 43, 226, 0.12);
        }

        .addon-tag {
            display: inline-block;
            margin-bottom: 16px;
            color: rgba(138, 43, 226, 0.85);
            font-family: var(--font-code);
            font-size: 0.68rem;
            letter-spacing: 0.16em;
        }

        .addon-card h4 {
            margin: 0 0 10px;
            font-size: 1.25rem;
            color: #fff;
        }

        .addon-card p {
            margin: 0 0 22px;
            min-height: 2.8em;
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        .addon-price {
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-family: var(--font-tech);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--neon-blue);
            text-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
        }

        /* FAQ Section */
        .faq-section {
            position: relative;
            padding: 140px 0;
            overflow: hidden;
        }

        .faq-section__glow {
            position: absolute;
            top: 50%;
            left: 30%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(138, 43, 226, 0.12) 0%, rgba(0, 240, 255, 0.06) 40%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            z-index: 0;
        }

        .faq-section__inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(280px, 380px) 1fr;
            gap: 64px;
            align-items: start;
        }

        .faq-intro {
            position: sticky;
            top: calc(var(--header-height) + 40px);
        }

        .faq-intro__badge {
            display: inline-block;
            margin-bottom: 28px;
            padding: 8px 18px;
            border-radius: 999px;
            border: 1px solid rgba(138, 43, 226, 0.35);
            background: rgba(138, 43, 226, 0.08);
            color: rgba(180, 120, 255, 0.95);
            font-family: var(--font-tech);
            font-size: 0.72rem;
            letter-spacing: 0.2em;
        }

        .faq-intro__title {
            margin: 0 0 24px;
            font-family: var(--font-tech);
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: 1px;
            color: #fff;
            text-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
        }

        .faq-intro__title span {
            color: var(--neon-blue);
        }

        .faq-intro__lead {
            margin: 0 0 36px;
            max-width: 28em;
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .faq-intro__highlights {
            list-style: none;
            margin: 0 0 40px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-intro__highlights li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(0, 0, 0, 0.35);
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
        }

        .faq-intro__highlights strong {
            font-family: var(--font-tech);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--neon-blue);
            text-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
            min-width: 4.5em;
        }

        .faq-intro__cta {
            font-size: 0.92rem;
            letter-spacing: 0.06em;
        }

        .faq-panel {
            padding: 12px;
            border-radius: 24px;
            border: 1px solid rgba(0, 240, 255, 0.12);
            background:
                linear-gradient(165deg, rgba(0, 240, 255, 0.04) 0%, transparent 45%),
                rgba(0, 0, 0, 0.45);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(0, 240, 255, 0.06);
        }

        .faq-panel:hover {
            transform: none;
            border-color: rgba(0, 240, 255, 0.12);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(0, 240, 255, 0.06);
        }

        .faq-panel:hover::before {
            opacity: 0;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-item {
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(0, 0, 0, 0.28);
            overflow: hidden;
            transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.12);
        }

        .faq-item.active {
            border-color: rgba(0, 240, 255, 0.28);
            background:
                linear-gradient(90deg, rgba(0, 240, 255, 0.06) 0%, rgba(0, 0, 0, 0.32) 28%),
                rgba(0, 0, 0, 0.32);
            box-shadow: 0 0 32px rgba(0, 240, 255, 0.08), inset 3px 0 0 var(--neon-blue);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 28px 32px;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.45;
            cursor: pointer;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 24px;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover,
        .faq-item.active .faq-question {
            color: var(--neon-blue);
        }

        .faq-index {
            font-family: var(--font-tech);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.28);
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .faq-item.active .faq-index {
            color: var(--neon-blue);
            text-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
        }

        .faq-question__text {
            padding-right: 12px;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.04);
            position: relative;
            transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 14px;
            height: 2px;
            background: currentColor;
            transform: translate(-50%, -50%);
            transition: transform 0.35s ease, opacity 0.35s ease;
        }

        .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-item.active .faq-icon {
            border-color: rgba(0, 240, 255, 0.45);
            background: rgba(0, 240, 255, 0.1);
            transform: rotate(180deg);
        }

        .faq-item.active .faq-icon::after {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(90deg) scale(0);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 32px 0 80px;
            color: var(--text-muted);
        }

        .faq-answer p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.75;
        }

        .faq-item.active .faq-answer {
            max-height: 240px;
            padding: 0 32px 28px 80px;
        }

        /* Bottom CTA */
        .bottom-cta {
            text-align: center;
            padding: 100px 0;
            background: linear-gradient(to top, rgba(0, 240, 255, 0.05), transparent);
        }
        .bottom-cta h2 {
            font-family: var(--font-tech);
            font-size: 3rem;
            margin-bottom: 30px;
            color: #fff;
        }

        .bottom-cta .hero-btns .btn {
            font-size: 1.2rem;
            padding: 15px 40px;
        }

        /* Responsive layout */
        @media (max-width: 992px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .hardware-showcase { flex-direction: column; text-align: center; padding: 50px 30px; }
            .media-frame--hardware { width: 100%; max-width: 400px; }
            .media-frame--card { margin-left: -20px; margin-right: -20px; }
            .feature-card h3,
            .feature-card p { padding-left: 20px; padding-right: 20px; }
            .hw-specs li { justify-content: center; }
            .pricing-showcase__hero {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 48px 24px 36px;
                text-align: center;
                justify-items: center;
            }
            .pricing-showcase__info,
            .pricing-showcase__price-block {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .pricing-showcase__info {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .pricing-plan-desc { margin-left: auto; margin-right: auto; max-width: 100%; }
            .pricing-specs { justify-content: center; }
            .pricing-showcase__price-block {
                padding: 32px 20px;
            }
            .pricing-cta {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
            .price-display {
                width: 100%;
                justify-content: center;
            }
            .pricing-showcase__divider { padding: 0 24px; }
            .addons-grid {
                grid-template-columns: 1fr;
                padding: 24px 24px 36px;
            }
            .faq-section__inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .faq-intro {
                position: static;
                text-align: center;
            }
            .faq-intro__lead {
                margin-left: auto;
                margin-right: auto;
            }
            .faq-intro__highlights {
                max-width: 420px;
                margin-left: auto;
                margin-right: auto;
            }
            .hero h1 { font-size: 4rem; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .hero-btns {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                width: min(100%, 360px);
                max-width: calc(100% - 32px);
                margin: 0 auto;
            }
            .hero-btns .btn,
            .hero-btns .btn-large {
                width: 100%;
                font-size: 0.9375rem;
                padding: 14px 20px;
                letter-spacing: 0.5px;
                line-height: 1.35;
                white-space: normal;
            }
            .bottom-cta {
                padding: 72px 0;
            }
            .bottom-cta h2 {
                font-size: clamp(1.5rem, 6vw, 2rem);
                margin-bottom: 24px;
                padding: 0 16px;
                line-height: 1.35;
            }
            .section-title {
                font-size: clamp(1.45rem, 6.5vw, 2.2rem);
                letter-spacing: 0.04em;
                padding: 0 4px;
            }
            .stats-grid { grid-template-columns: 1fr; }
            .glass-card { padding: 30px 20px; }
            .glass-card.pricing-showcase { padding: 0; }
            .pricing-showcase__hero {
                padding: 36px 16px 28px;
                gap: 24px;
            }
            .pricing-showcase__price-block {
                padding: 24px 14px;
            }
            .pricing-plan-title {
                font-size: clamp(1.45rem, 5.5vw, 2rem);
            }
            .pricing-plan-desc {
                font-size: 0.92rem;
                line-height: 1.65;
            }
            .pricing-specs {
                gap: 8px;
            }
            .pricing-specs li {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            .price-value {
                font-size: clamp(2.5rem, 11vw, 3.75rem);
            }
            .price-currency {
                font-size: 1.35rem;
                margin-top: 0.45em;
            }
            .price-period {
                font-size: 0.95rem;
                margin-bottom: 0.5em;
            }
            .pricing-cta {
                font-size: 0.875rem;
                padding: 14px 12px;
                letter-spacing: 0.04em;
            }
            .pricing-note {
                font-size: 0.78rem;
            }
            .pricing-showcase__divider {
                padding: 0 12px;
                gap: 10px;
                font-size: 0.68rem;
                letter-spacing: 0.1em;
            }
            .pricing-showcase__divider span {
                max-width: 100%;
            }
            .addons-grid {
                padding: 20px 14px 28px;
            }
            .faq-panel { padding: 8px; }
            .faq-question {
                padding: 22px 20px;
                gap: 16px;
                font-size: 1.05rem;
            }
            .faq-answer,
            .faq-item.active .faq-answer {
                padding-left: 20px;
                padding-right: 20px;
            }
            .faq-item.active .faq-answer {
                padding-bottom: 22px;
            }
        }
