:root {
            --aurix-primary: #2563eb;
            --aurix-darkblue: #0f172a;
        }
        .text-primary {
            color: var(--aurix-primary);
        }
        .bg-primary {
            background-color: var(--aurix-primary);
        }
        .border-primary {
            border-color: var(--aurix-primary);
        }
        .text-primary\/90 {
            color: rgba(37, 99, 235, 0.9);
        }
        .bg-primary\/5 {
            background-color: rgba(37, 99, 235, 0.05);
        }
        .hover\:bg-primary\/5:hover {
            background-color: rgba(37, 99, 235, 0.05);
        }
        .bg-darkblue {
            background-color: var(--aurix-darkblue);
        }
        body {
            font-family: "Noto Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }
        .nav-link {
            position: relative;
            color: #0f172a;
            transition: color 200ms ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: none;
            padding: 0;
            font: inherit;
            cursor: pointer;
        }
        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #2563eb;
            transition: width 200ms ease;
        }
        .nav-link:hover {
            color: #2563eb;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link.active {
            color: #2563eb;
            font-weight: 600;
        }
        .nav-link.active::after {
            width: 100%;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 22px;
            justify-content: flex-end;
        }
        .nav-item {
            position: relative;
        }
        .nav-dropdown-toggle {
            outline: none;
        }
        .nav-caret {
            width: 14px;
            height: 14px;
            transition: transform 200ms ease;
        }
        .nav-item:hover .nav-caret,
        .nav-item:focus-within .nav-caret {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            min-width: 280px;
            max-width: 320px;
            background: #ffffff;
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 16px;
            box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.35);
            padding: 12px;
            opacity: 0;
            transform: translate(-50%, 0) scale(0.98);
            pointer-events: none;
            transition: opacity 200ms ease, transform 200ms ease;
            z-index: 40;
        }
        .nav-item:hover .dropdown-menu,
        .nav-item:focus-within .dropdown-menu {
            opacity: 1;
            transform: translate(-50%, 0) scale(1);
            pointer-events: auto;
        }
        .dropdown-link {
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 12px 14px;
            border-radius: 12px;
            font-size: 0.9rem;
            color: #0f172a;
            text-decoration: none;
            line-height: 1.3;
            transition: background 150ms ease;
        }
        .dropdown-title {
            display: block;
            font-weight: 600;
            font-size: 0.92rem;
            color: #0f172a;
        }
        .dropdown-desc {
            display: block;
            font-size: 0.75rem;
            color: #64748b;
            line-height: 1.35;
        }
        .dropdown-link:hover {
            background: rgba(37, 99, 235, 0.08);
        }
        .dropdown-link:hover .dropdown-title {
            color: #1d4ed8;
        }
        .dropdown-link.active {
            background: rgba(37, 99, 235, 0.12);
        }
        .dropdown-link.active .dropdown-title {
            color: #1d4ed8;
        }
        .nav-cart {
            position: relative;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            background: #fff;
            transition: box-shadow 200ms ease, border-color 200ms ease;
        }
        .nav-cart:hover {
            border-color: rgba(37, 99, 235, 0.4);
            box-shadow: 0 14px 26px -22px rgba(37, 99, 235, 0.6);
        }
        .nav-cart.is-active {
            background: var(--aurix-primary);
            border-color: var(--aurix-primary);
            color: #fff;
        }
        .cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            border-radius: 999px;
            background: #ef4444;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 12px -8px rgba(239, 68, 68, 0.8);
        }
        .nav-cta {
            background: var(--aurix-primary);
            color: #fff;
            padding: 8px 14px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 16px 30px -22px rgba(37, 99, 235, 0.7);
            transition: transform 180ms ease, box-shadow 180ms ease;
            font-size: 0.86rem;
        }
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 20px 40px -26px rgba(37, 99, 235, 0.8);
        }
        .nav-toggle {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
        }
        .mobile-nav {
            max-height: 0;
            overflow: hidden;
            background: #ffffff;
            border-top: 1px solid rgba(148, 163, 184, 0.15);
            transition: max-height 300ms ease;
        }
        .mobile-nav.is-open {
            max-height: 800px;
        }
        .mobile-nav-inner {
            padding: 16px 24px 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .mobile-link {
            padding: 10px 12px;
            border-radius: 12px;
            color: #0f172a;
            text-decoration: none;
            font-weight: 600;
            background: rgba(248, 250, 252, 0.9);
        }
        .mobile-accordion {
            border-radius: 14px;
            border: 1px solid rgba(148, 163, 184, 0.2);
            overflow: hidden;
        }
        .mobile-accordion-toggle {
            width: 100%;
            text-align: left;
            background: #ffffff;
            border: none;
            padding: 12px 14px;
            font-weight: 600;
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        .mobile-accordion-panel {
            max-height: 0;
            overflow: hidden;
            background: rgba(248, 250, 252, 0.9);
            transition: max-height 220ms ease;
            display: grid;
        }
        .mobile-accordion-panel a {
            padding: 10px 14px;
            color: #475569;
            text-decoration: none;
            font-size: 0.9rem;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
        }
        .mobile-accordion.is-open .mobile-accordion-panel {
            max-height: 320px;
        }
        .accordion-caret {
            width: 16px;
            height: 16px;
            transition: transform 200ms ease;
        }
        .mobile-accordion.is-open .accordion-caret {
            transform: rotate(180deg);
        }
        .mobile-cta {
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 16px;
            background: var(--aurix-primary);
            color: #fff;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 16px 30px -22px rgba(37, 99, 235, 0.7);
        }
        .hero-section {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            background-image: url("../images/hero-bg.png");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: auto 100%;
            background-color: #f8fafc;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(120deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.86) 42%, rgba(248, 250, 252, 0.35) 68%, rgba(248, 250, 252, 0.05) 100%),
                radial-gradient(120% 90% at 12% 0%, rgba(37, 99, 235, 0.16), transparent 60%),
                radial-gradient(120% 90% at 90% 35%, rgba(15, 23, 42, 0.12), transparent 60%),
                radial-gradient(rgba(37, 99, 235, 0.14) 1px, transparent 1px);
            background-size: auto, auto, auto, 24px 24px;
            opacity: 0.95;
            z-index: -1;
        }
        .hero-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(80% 120% at 85% 60%, rgba(37, 99, 235, 0.12), transparent 55%);
            z-index: -1;
        }
        .hero-copy {
            position: relative;
            z-index: 1;
            padding: 36px 36px 30px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(148, 163, 184, 0.2);
            box-shadow: 0 30px 70px -50px rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(10px);
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(37, 99, 235, 0.12);
            color: var(--aurix-primary);
            letter-spacing: 0.32em;
        }
        .hero-title {
            letter-spacing: -0.02em;
        }
        .hero-title .text-primary {
            background: linear-gradient(120deg, #2563eb, #38bdf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-subtitle {
            max-width: 34rem;
        }
        .hero-actions .bg-primary {
            box-shadow: 0 16px 32px -18px rgba(37, 99, 235, 0.6);
        }
        .hero-actions .bg-primary:hover {
            transform: translateY(-1px);
        }
        .hero-actions .border-primary {
            background: rgba(255, 255, 255, 0.9);
        }
        .hero-metrics {
            display: grid;
            gap: 12px;
        }
        .hero-metric {
            padding: 12px 14px;
            border-radius: 16px;
            background: rgba(248, 250, 252, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.18);
            text-align: left;
        }
        @media (max-width: 768px) {
            .hero-section {
                background-size: auto 100%;
                background-position: center center;
            }
            .hero-copy {
                padding: 24px;
                border-radius: 24px;
                background: rgba(255, 255, 255, 0.92);
            }
        }
        .hero-visual {
            position: relative;
            min-height: 380px;
            border-radius: 0;
            overflow: visible;
            background: transparent;
            border: none;
            box-shadow: none;
        }
        .hero-visual::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(60% 60% at 50% 45%, rgba(37, 99, 235, 0.18), transparent 70%),
                radial-gradient(80% 80% at 85% 20%, rgba(14, 165, 233, 0.12), transparent 70%);
            border-radius: 0;
            opacity: 0.35;
            z-index: 0;
        }
        .hero-tech {
            width: 100%;
            height: 100%;
            animation: floatSlow 9s ease-in-out infinite;
            position: relative;
            z-index: 1;
            opacity: 1;
            filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.25));
        }
        .tech-orbit {
            fill: none;
            stroke: rgba(37, 99, 235, 0.55);
            stroke-width: 2.4;
            stroke-dasharray: 6 10;
            transform-box: fill-box;
            transform-origin: center;
            animation: spinSlow 18s linear infinite;
        }
        .tech-orbit.alt {
            stroke-dasharray: 2 8;
            opacity: 0.7;
            animation-duration: 26s;
        }
        .tech-hex {
            fill: none;
            stroke: url(#techGradient);
            stroke-width: 3.6;
            stroke-linejoin: round;
            stroke-linecap: round;
            stroke-dasharray: 12 16;
            animation: dashFlow 14s linear infinite;
        }
        .tech-hex.inner {
            stroke-width: 1.6;
            opacity: 0.75;
        }
        .tech-hex.glow {
            stroke-width: 7;
            opacity: 0.22;
            filter: blur(2px);
            animation-duration: 22s;
        }
        .tech-stream {
            fill: none;
            stroke: rgba(59, 130, 246, 0.8);
            stroke-width: 2.6;
            stroke-dasharray: 10 16;
            animation: dashFlow 10s linear infinite;
        }
        .tech-stream.alt {
            animation-duration: 16s;
            opacity: 0.85;
        }
        .tech-core {
            animation: corePulse 3s ease-in-out infinite;
        }
        .tech-core.ring {
            fill: none;
            stroke: rgba(59, 130, 246, 0.75);
            stroke-width: 1.6;
            animation: pulseRing 3.6s ease-in-out infinite;
        }
        .tech-pulse {
            fill: none;
            stroke: rgba(37, 99, 235, 0.65);
            stroke-width: 1.6;
            animation: pulseRing 3.6s ease-in-out infinite;
        }
        .tech-packet {
            filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.8));
        }
        .tech-packet.fast {
            filter: drop-shadow(0 0 14px rgba(14, 165, 233, 0.95));
        }
        @keyframes dashFlow {
            to { stroke-dashoffset: -320; }
        }
        @keyframes spinSlow {
            to { transform: rotate(360deg); }
        }
        @keyframes floatSlow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }
        @keyframes corePulse {
            0%, 100% { transform: scale(0.98); opacity: 0.9; }
            50% { transform: scale(1.05); opacity: 1; }
        }
        @keyframes pulseRing {
            0%, 100% { opacity: 0.25; }
            50% { opacity: 0.7; }
        }
        .reference-marquee-frame {
            position: relative;
            overflow: hidden;
            --marquee-bg: #f8fafc;
            --fade-bg: #f8fafc;
            --fade-bg-transparent: rgba(248, 250, 252, 0);
        }
        .reference-marquee {
            position: relative;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: auto;
            cursor: grab;
            background: var(--marquee-bg);
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .reference-marquee::-webkit-scrollbar {
            display: none;
        }
        .reference-marquee.dragging {
            cursor: grabbing;
            user-select: none;
        }
        .reference-track {
            display: flex;
            gap: 20px;
            width: max-content;
        }
        .reference-marquee-frame::before,
        .reference-marquee-frame::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 56px;
            pointer-events: none;
            z-index: 2;
        }
        .reference-marquee-frame::before {
            left: 0;
            background: linear-gradient(to right, var(--fade-bg) 0%, var(--fade-bg-transparent) 100%);
        }
        .reference-marquee-frame::after {
            right: 0;
            background: linear-gradient(to left, var(--fade-bg) 0%, var(--fade-bg-transparent) 100%);
        }
        .review-marquee-frame {
            --marquee-bg: #ffffff;
            --fade-bg: #ffffff;
            --fade-bg-transparent: rgba(255, 255, 255, 0);
        }
        .plan-card {
            position: relative;
            overflow: visible;
            isolation: isolate;
        }
        .plan-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 28px;
            background:
                radial-gradient(220px 160px at 16% 0%, rgba(37, 99, 235, 0.08), transparent 60%),
                radial-gradient(220px 180px at 88% 18%, rgba(59, 130, 246, 0.06), transparent 62%),
                radial-gradient(220px 200px at 70% 100%, rgba(15, 23, 42, 0.04), transparent 65%);
            opacity: 0.9;
            pointer-events: none;
            z-index: 0;
        }
        .plan-card::after {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: 26px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            pointer-events: none;
            z-index: 0;
        }
        .plan-card > * {
            position: relative;
            z-index: 1;
        }
        .plan-card--featured::after {
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
        }
        .price-major {
            font-variant-numeric: tabular-nums;
        }
        .price-minor {
            font-size: 0.6em;
            vertical-align: super;
            margin-left: 2px;
        }
        .price-currency {
            font-size: 0.7em;
            margin-left: 2px;
        }
        .plan-badge {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #fff;
            box-shadow: 0 10px 20px -12px rgba(37, 99, 235, 0.6);
        }
        .plan-crown {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 12px 24px -16px rgba(37, 99, 235, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.7);
        }
        .discount-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 10px;
            border-radius: 10px;
            background: linear-gradient(135deg, #fff7ed, #ffedd5);
            color: #c2410c;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 0.02em;
            font-variant-numeric: tabular-nums;
            border: 1px solid #fed7aa;
            box-shadow:
                0 10px 20px -16px rgba(234, 88, 12, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }
        .reviews-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
        }
        .reviews-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(320px 200px at 12% 10%, rgba(37, 99, 235, 0.12), transparent 70%),
                radial-gradient(360px 240px at 90% 20%, rgba(14, 165, 233, 0.12), transparent 70%);
            opacity: 0.55;
            pointer-events: none;
        }
        .review-summary {
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(148, 163, 184, 0.25);
            border-radius: 20px;
            box-shadow: 0 20px 40px -32px rgba(15, 23, 42, 0.45);
            backdrop-filter: blur(10px);
        }
        .review-summary-icon {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(59, 130, 246, 0.35));
            color: #1d4ed8;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
        }
        .review-summary-text {
            color: #475569;
        }
        .review-card {
            position: relative;
            min-width: 280px;
            max-width: 280px;
            padding: 16px 20px 18px;
            border-radius: 22px;
            background: #ffffff;
            border: 1px solid rgba(148, 163, 184, 0.18);
            overflow: hidden;
            transition: transform 220ms ease, box-shadow 220ms ease;
            box-shadow: 0 16px 34px -28px rgba(15, 23, 42, 0.35);
            display: flex;
            flex-direction: column;
        }
        .review-card::before {
            content: none;
        }
        .review-card::after {
            content: "";
            position: absolute;
            right: -30px;
            top: -30px;
            width: 120px;
            height: 120px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
            opacity: 0.6;
            pointer-events: none;
        }
        .review-card > * {
            position: relative;
            z-index: 1;
        }
        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 26px 50px -32px rgba(37, 99, 235, 0.45);
        }
        .review-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .review-date {
            font-size: 0.72rem;
            color: #94a3b8;
            white-space: nowrap;
        }
        .review-stars {
            color: #f59e0b;
            letter-spacing: 3px;
            text-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
            font-size: 1rem;
            line-height: 1;
        }
        .review-comment {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.45;
            min-height: calc(1.45em * 3);
        }
        .review-footer {
            margin-top: auto;
            padding-top: 10px;
        }
        .review-card .review-stars,
        .review-profile-card .review-stars {
            margin-top: 0;
        }
        .review-profile-card {
            align-self: flex-start;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 18px;
            padding: 14px 16px;
            min-width: 220px;
            box-shadow: 0 14px 28px -26px rgba(15, 23, 42, 0.3);
            backdrop-filter: blur(10px);
        }
        .review-profile-rating {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .review-rating-stars {
            position: relative;
            display: inline-block;
            font-size: 1rem;
            line-height: 1;
            letter-spacing: 3px;
            color: #e2e8f0;
        }
        .review-rating-stars::before {
            content: "★★★★★";
        }
        .review-rating-stars::after {
            content: "★★★★★";
            position: absolute;
            left: 0;
            top: 0;
            width: calc(var(--rating) / 5 * 100%);
            overflow: hidden;
            color: #f59e0b;
            text-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
        }
        .review-profile-score {
            background: rgba(37, 99, 235, 0.12);
            color: #1d4ed8;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 4px 8px;
            border-radius: 999px;
        }
        .review-profile-name {
            margin-top: 8px;
            font-weight: 700;
            color: #0f172a;
        }
        .review-profile-meta {
            font-size: 0.82rem;
            color: #64748b;
            margin-top: 4px;
        }
        .review-profile-note {
            margin-top: 8px;
            font-size: 0.75rem;
            color: #94a3b8;
        }
        .app-card {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            border: 1px solid rgba(148, 163, 184, 0.2);
            background: rgba(255, 255, 255, 0.92);
            color: #0f172a;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 12px 26px -22px rgba(15, 23, 42, 0.35);
            transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
        }
        .app-card:hover {
            transform: translateY(-3px);
            border-color: rgba(37, 99, 235, 0.3);
            box-shadow: 0 18px 32px -24px rgba(37, 99, 235, 0.4);
        }
        .app-logo {
            width: 38px;
            height: 38px;
            display: block;
            object-fit: contain;
        }
        .app-label {
            flex: 1;
        }
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 200ms ease;
            z-index: 60;
        }
        .modal-backdrop.is-open {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-panel {
            width: 100%;
            max-width: 520px;
            background: #fff;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 28px 60px -40px rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.2);
        }
        .modal-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
        }
        .modal-kicker {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: rgba(37, 99, 235, 0.7);
            font-weight: 600;
        }
        .modal-title {
            margin-top: 6px;
            font-size: 1.4rem;
            font-weight: 700;
            color: #0f172a;
        }
        .modal-subtitle {
            margin-top: 6px;
            font-size: 0.9rem;
            color: #64748b;
        }
        .modal-close {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            background: #fff;
        }
        .modal-form {
            margin-top: 20px;
            display: grid;
            gap: 16px;
        }
        .modal-field {
            display: grid;
            gap: 8px;
            font-size: 0.85rem;
            color: #334155;
            font-weight: 600;
        }
        .modal-input {
            width: 100%;
            border-radius: 14px;
            border: 1px solid rgba(148, 163, 184, 0.3);
            padding: 12px 14px;
            font-size: 0.95rem;
            color: #0f172a;
            background: #f8fafc;
        }
        .modal-input:focus {
            outline: none;
            border-color: rgba(37, 99, 235, 0.6);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
            background: #fff;
        }
        .modal-note {
            font-size: 0.8rem;
            color: #64748b;
            background: #f8fafc;
            border: 1px solid rgba(148, 163, 184, 0.2);
            padding: 10px 12px;
            border-radius: 12px;
        }
        .modal-price {
            background: #f8fafc;
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 16px;
            padding: 12px 14px;
            display: grid;
            gap: 8px;
        }
        .modal-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #475569;
        }
        .modal-price-old {
            text-decoration: line-through;
            color: #94a3b8;
            font-weight: 500;
        }
        .modal-price-new {
            font-weight: 700;
            color: #0f172a;
        }
        .modal-price-total {
            margin-top: 2px;
            padding-top: 8px;
            border-top: 1px dashed rgba(148, 163, 184, 0.35);
            font-weight: 700;
            color: #0f172a;
        }
        .modal-price-note {
            font-size: 0.75rem;
            color: #64748b;
        }
        .modal-error {
            font-size: 0.8rem;
            color: #dc2626;
            background: #fee2e2;
            border: 1px solid rgba(220, 38, 38, 0.25);
            padding: 10px 12px;
            border-radius: 12px;
        }
        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 8px;
        }
        .modal-secondary {
            padding: 10px 16px;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.4);
            background: #fff;
            color: #0f172a;
            font-weight: 600;
        }
        .modal-primary {
            padding: 10px 18px;
            border-radius: 12px;
            border: none;
            background: var(--aurix-primary);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 16px 30px -20px rgba(37, 99, 235, 0.7);
        }
        .modal-open {
            overflow: hidden;
        }
        .site-footer {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #0b1324 55%, #0f172a 100%);
            color: #cbd5f5;
            overflow: hidden;
        }
        .site-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(420px 180px at 10% 0%, rgba(37, 99, 235, 0.16), transparent 65%),
                radial-gradient(420px 220px at 85% 20%, rgba(14, 165, 233, 0.12), transparent 70%),
                radial-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px);
            background-size: auto, auto, 24px 24px;
            opacity: 0.5;
            pointer-events: none;
        }
        .footer-top {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            padding: 56px 0 32px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.2);
        }
        .footer-logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f8fafc;
            letter-spacing: 0.01em;
        }
        .footer-desc {
            margin-top: 12px;
            font-size: 0.95rem;
            color: #cbd5f5;
            line-height: 1.6;
        }
        .footer-meta {
            margin-top: 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .footer-meta a {
            color: #e2e8f0;
            text-decoration: none;
        }
        .footer-promo {
            position: relative;
            z-index: 1;
            margin: 28px 0 18px;
            padding: 20px 24px;
            border-radius: 20px;
            border: 1px solid rgba(148, 163, 184, 0.22);
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.65));
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            box-shadow: 0 22px 40px -30px rgba(15, 23, 42, 0.9);
        }
        .footer-promo > * {
            position: relative;
            z-index: 1;
        }
        .footer-promo::before {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: 18px;
            background: linear-gradient(120deg, rgba(37, 99, 235, 0.16), transparent 55%);
            pointer-events: none;
        }
        .footer-promo-title {
            margin: 0;
            font-size: 1rem;
            font-weight: 700;
            color: #f8fafc;
            letter-spacing: 0.01em;
        }
        .footer-promo-desc {
            margin: 6px 0 0;
            font-size: 0.9rem;
            color: #cbd5f5;
            line-height: 1.55;
            max-width: 520px;
        }
        .footer-promo-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 999px;
            background: linear-gradient(135deg, #2563eb, #38bdf8);
            color: #ffffff;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 16px 30px -22px rgba(37, 99, 235, 0.8);
            transition: transform 200ms ease, box-shadow 200ms ease;
        }
        .footer-promo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 38px -24px rgba(56, 189, 248, 0.75);
        }
        .footer-links h5 {
            color: #f8fafc;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 8px;
            font-size: 0.92rem;
            color: #cbd5f5;
        }
        .footer-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 0 32px;
            font-size: 0.78rem;
            color: #94a3b8;
        }
        .footer-code {
            text-transform: none;
            letter-spacing: 0;
            color: #94a3b8;
        }
        .footer-code a {
            color: var(--aurix-primary);
            font-weight: 700;
            text-decoration: none;
        }
        .footer-code a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-promo {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-promo-btn {
                width: 100%;
            }
            .footer-promo-desc {
                max-width: none;
            }
        }
        .web-design-hero {
            position: relative;
            overflow: hidden;
            background: #f4f8ff;
        }
        .web-design-hero .hero-bg {
            position: absolute;
            inset: 0;
            background: url("assets/images/web-design-hero.svg") center/cover no-repeat;
            opacity: 0.95;
        }
        .web-design-hero .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(120deg, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.6) 100%),
                radial-gradient(900px 500px at 0% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
                radial-gradient(700px 500px at 100% 10%, rgba(14, 165, 233, 0.15), transparent 60%);
        }
        .web-design-hero .hero-panel {
            padding: 32px;
            border-radius: 28px;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 40px 80px -50px rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(14px);
        }
        .web-design-hero .hero-media-card {
            border-radius: 28px;
            padding: 20px;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 30px 70px -55px rgba(15, 23, 42, 0.45);
        }
        .web-design-hero .hero-media-main {
            overflow: hidden;
        }
        .web-design-hero .hero-media-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 16px;
        }
        .web-design-hero .hero-media-thumb {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 20px 45px -40px rgba(15, 23, 42, 0.45);
        }
        .web-design-hero .hero-media-thumb img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
